-
Notifications
You must be signed in to change notification settings - Fork 0
/
e_coli_core.xml.1
9898 lines (9898 loc) · 691 KB
/
e_coli_core.xml.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<sbml xmlns:fbc="http://www.sbml.org/sbml/level3/version1/fbc/version2" xmlns="http://www.sbml.org/sbml/level3/version1/core" level="3" version="1" sboTerm="SBO:0000624" fbc:required="false">
<model fbc:strict="true" id="e_coli_core">
<listOfUnitDefinitions>
<unitDefinition id="mmol_per_gDW_per_hr">
<listOfUnits>
<unit kind="mole" scale="-3" multiplier="1" exponent="1"/>
<unit kind="gram" scale="0" multiplier="1" exponent="-1"/>
<unit kind="second" scale="0" multiplier="3600" exponent="-1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<fbc:listOfObjectives fbc:activeObjective="obj">
<fbc:objective fbc:id="obj" fbc:type="maximize">
<fbc:listOfFluxObjectives>
<fbc:fluxObjective fbc:reaction="R_BIOMASS_Ecoli_core_w_GAM" fbc:coefficient="1"/>
</fbc:listOfFluxObjectives>
</fbc:objective>
</fbc:listOfObjectives>
<listOfParameters>
<parameter value="-1000" id="cobra_default_lb" sboTerm="SBO:0000626" constant="true" units="mmol_per_gDW_per_hr"/>
<parameter value="1000" id="cobra_default_ub" sboTerm="SBO:0000626" constant="true" units="mmol_per_gDW_per_hr"/>
<parameter value="0" id="cobra_0_bound" sboTerm="SBO:0000626" constant="true" units="mmol_per_gDW_per_hr"/>
<parameter id="R_ATPM_lower_bound" value="8.39" sboTerm="SBO:0000625" constant="true" units="mmol_per_gDW_per_hr"/>
<parameter id="R_EX_glc__D_e_lower_bound" value="-10" sboTerm="SBO:0000625" constant="true" units="mmol_per_gDW_per_hr"/>
</listOfParameters>
<listOfCompartments>
<compartment id="e" name="extracellular space" constant="true"/>
<compartment id="c" name="cytosol" constant="true"/>
</listOfCompartments>
<listOfSpecies>
<species id="M_glc__D_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="D-Glucose" metaid="M_glc__D_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="0" fbc:chemicalFormula="C6H12O6">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_glc__D_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:20999"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:4167"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:17634"/>
<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/inchi_key/WQZGKKKJIJFFOK-GASJEMHNSA-N"/>
<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/sabiork/1406"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1407"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd26821"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00027"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_gln__L_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="L-Glutamine" metaid="M_gln__L_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_gln__L_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:42943"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42899"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32679"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32678"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58359"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28300"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42812"/>
<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:32666"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6227"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32665"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21308"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42814"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5432"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24316"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00641"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/ZDXPYRJPNDTMRX-VKHMYHEASA-N"/>
<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/reactome.compound/113522"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/212615"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29472"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/2011"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/74"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00253"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00053"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_gln__L_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="L-Glutamine" metaid="M_gln__L_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="0" fbc:chemicalFormula="C5H10N2O3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_gln__L_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:42943"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42899"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32679"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32678"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58359"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28300"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42812"/>
<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:32666"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6227"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:32665"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21308"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42814"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5432"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24316"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00641"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/ZDXPYRJPNDTMRX-VKHMYHEASA-N"/>
<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/reactome.compound/113522"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/212615"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29472"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/2011"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/74"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00253"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00053"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_glu__L_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="L-Glutamate" metaid="M_glu__L_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-1" fbc:chemicalFormula="C5H8NO4">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_glu__L_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<rdf:Bag>
<rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu__L"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glutamates"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLT"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76051"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21301"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29985"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42825"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29987"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18237"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24314"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16015"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13107"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5431"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21304"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6224"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14321"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29988"/>
<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/inchi_key/WHUUTDBJXJRKMK-VKHMYHEASA-M"/>
<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/reactome.compound/428614"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29404"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113552"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/210382"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/73"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/2010"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27177"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00023"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19002"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_glu__L_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="L-Glutamate" metaid="M_glu__L_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="-1" fbc:chemicalFormula="C5H8NO4">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_glu__L_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<rdf:Bag>
<rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/glu__L"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:Glutamates"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:GLT"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:76051"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21301"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29985"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42825"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29987"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18237"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24314"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16015"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13107"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5431"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21304"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:6224"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14321"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29988"/>
<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/inchi_key/WHUUTDBJXJRKMK-VKHMYHEASA-M"/>
<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/reactome.compound/428614"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29404"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113552"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/210382"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/73"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/2010"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27177"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00023"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19002"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_glx_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Glyoxylate" metaid="M_glx_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-1" fbc:chemicalFormula="C2H1O3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_glx_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:24420"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36655"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14368"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24421"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42767"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16891"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:35977"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5509"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/cdffdb1a-3322-4cc1-9171-d857bfaa198a"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/4fd7f3e0-dd25-43ac-9453-dda3e52396e4/compound/aecbda66-6e98-4c11-aeaf-6a072f4f963c"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/5882df9c-dae1-4d80-a40e-db4724271456/compound/9dc0aa3b-447a-4b5d-8157-501b036f9626"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/43b74f4f-bc8a-4b8b-b587-c97d8e9eed48"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00119"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/HHLFWLYXYJOTON-UHFFFAOYSA-M"/>
<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/reactome.compound/904849"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/389678"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1838"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00040"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_h2o_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="H2O H2O" metaid="M_h2o_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="0" fbc:chemicalFormula="H2O">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_h2o_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:OXONIUM"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYL-GROUP"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:WATER"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13352"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30490"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43228"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33813"/>
<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:27313"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42043"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44819"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29356"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5594"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10743"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15377"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42857"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13365"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29412"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16234"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13419"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5585"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44701"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/799908db-b8c9-4982-86cb-1f225e2ad08c"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/e7f34a8e-cded-4793-b6d5-792335b38636"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/5882df9c-dae1-4d80-a40e-db4724271456/compound/969d0227-3069-4e44-9525-7ae7bad84170"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02111"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01039"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/XLYOFNOQVPJJNP-UHFFFAOYSA-N"/>
<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.drug/D00001"/>
<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/reactome.compound/113521"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/141343"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2022884"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5278291"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29356"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/189422"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5668574"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5693747"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/109276"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113519"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1605715"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/8851517"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113518"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351603"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/40"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27222"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00001"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15275"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_h2o_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="H2O H2O" metaid="M_h2o_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="0" fbc:chemicalFormula="H2O">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_h2o_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:OXONIUM"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:HYDROXYL-GROUP"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:WATER"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:OH"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13352"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30490"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43228"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:33813"/>
<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:27313"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42043"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44819"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29356"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5594"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10743"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15377"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42857"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13365"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29412"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16234"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13419"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:5585"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44701"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/799908db-b8c9-4982-86cb-1f225e2ad08c"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/e7f34a8e-cded-4793-b6d5-792335b38636"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/5882df9c-dae1-4d80-a40e-db4724271456/compound/969d0227-3069-4e44-9525-7ae7bad84170"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB02111"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01039"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/XLYOFNOQVPJJNP-UHFFFAOYSA-N"/>
<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.drug/D00001"/>
<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/reactome.compound/113521"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/141343"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2022884"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5278291"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29356"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/189422"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5668574"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5693747"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/109276"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113519"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1605715"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/8851517"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113518"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351603"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/40"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd27222"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00001"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd15275"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_h_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="H+" metaid="M_h_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="1" fbc:chemicalFormula="H">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_h_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:5584"/>
<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:10744"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59597"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/GPRLSGONYQIRFK-UHFFFAOYSA-N"/>
<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/reactome.compound/2000349"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/425978"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/74722"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/428040"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/427899"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/428548"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/156540"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/70106"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/425969"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1132304"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5668577"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1470067"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/163953"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/193465"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113529"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351626"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/425999"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/194688"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/374900"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2872447"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/372511"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/39"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00067"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_h_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="H+" metaid="M_h_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="1" fbc:chemicalFormula="H">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_h_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:5584"/>
<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:10744"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB59597"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/GPRLSGONYQIRFK-UHFFFAOYSA-N"/>
<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/reactome.compound/2000349"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/425978"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/74722"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/428040"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/427899"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/428548"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/156540"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/70106"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/425969"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1132304"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5668577"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1470067"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/163953"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/193465"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113529"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351626"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/425999"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/194688"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/374900"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2872447"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/372511"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/39"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00067"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_icit_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Isocitrate" metaid="M_icit_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-3" fbc:chemicalFormula="C6H5O7">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_icit_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<rdf:Bag>
<rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/icit"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16087"/>
<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/chebi/CHEBI:24886"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:36453"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:14465"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:30887"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24884"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00193"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/ODBLHEXUDAPZAU-UHFFFAOYSA-K"/>
<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/sabiork/2013"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00260"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_lac__D_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="D-Lactate" metaid="M_lac__D_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-1" fbc:chemicalFormula="C3H5O3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_lac__D_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:16004"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:341"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18684"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43701"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11001"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42111"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42105"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01311"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00171"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/JVTAAEKCZFNVCJ-UWTATZPHSA-M"/>
<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/sabiork/1997"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/2284"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00221"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_lac__D_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="D-Lactate" metaid="M_lac__D_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="-1" fbc:chemicalFormula="C3H5O3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_lac__D_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:16004"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:341"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18684"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:43701"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11001"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42111"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:42105"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01311"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00171"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/JVTAAEKCZFNVCJ-UWTATZPHSA-M"/>
<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/sabiork/1997"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/2284"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00221"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_mal__L_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="L-Malate" metaid="M_mal__L_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-2" fbc:chemicalFormula="C4H4O5">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_mal__L_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:15589"/>
<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/chebi/CHEBI:18784"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18785"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13140"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11066"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00156"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/BJEPYKJPYRNKOW-REOHCLBHSA-L"/>
<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/reactome.compound/198498"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113544"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1918"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00130"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_mal__L_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="L-Malate" metaid="M_mal__L_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="-2" fbc:chemicalFormula="C4H4O5">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_mal__L_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:15589"/>
<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/chebi/CHEBI:18784"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18785"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13140"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:11066"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00156"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/BJEPYKJPYRNKOW-REOHCLBHSA-L"/>
<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/reactome.compound/198498"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113544"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1918"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00130"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_nad_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Nicotinamide adenine dinucleotide" metaid="M_nad_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-1" fbc:chemicalFormula="C21H26N7O14P2">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_nad_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:7422"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44215"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13394"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21901"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57540"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15846"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44281"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44214"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13393"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29867"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00902"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/BAWFJGJZGIEFAR-NNYOXOHSSA-M"/>
<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/reactome.compound/352330"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/192307"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/194653"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113526"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29360"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/37"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00003"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_nadh_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Nicotinamide adenine dinucleotide - reduced" metaid="M_nadh_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-2" fbc:chemicalFormula="C21H27N7O14P2">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_nadh_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:21902"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7423"/>
<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:16908"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13396"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01487"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/BOPGDPNILDQYTO-NNYOXOHSSA-L"/>
<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/reactome.compound/192305"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/73473"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29362"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/194697"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/38"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00004"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_nadp_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Nicotinamide adenine dinucleotide phosphate" metaid="M_nadp_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-3" fbc:chemicalFormula="C21H25N7O17P3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_nadp_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:29868"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44405"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25523"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13397"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:18009"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7424"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13398"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21903"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58349"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44409"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00217"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/XJLXINKUBYWONI-NNYOXOHSSA-K"/>
<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/reactome.compound/194668"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113563"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/6790191"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5623650"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2000348"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/389556"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29366"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351628"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113564"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1263"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00006"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_nadph_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Nicotinamide adenine dinucleotide phosphate - reduced" metaid="M_nadph_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-4" fbc:chemicalFormula="C21H26N7O17P3">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_nadph_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:16474"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:7425"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:57783"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21904"/>
<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:44286"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB06341"/>
<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/inchi_key/ACFIXJIJDZMPPO-NNYOXOHSSA-J"/>
<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/reactome.compound/113600"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/6790135"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113602"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113601"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2000347"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351627"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29364"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5623644"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/194725"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1262"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00005"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_nh4_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Ammonium" metaid="M_nh4_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="1" fbc:chemicalFormula="H4N">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_nh4_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<rdf:Bag>
<rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nh4"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIUM"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIA"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44284"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:135980"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22533"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13406"/>
<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:13771"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16134"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28938"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22534"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13405"/>
<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/chebi/CHEBI:44269"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44404"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13407"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/96667bd9-aeae-4e8f-89d3-100d0396af05"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/41e4c903-407f-49f7-bf6b-0a94d39fa3a7"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/5882df9c-dae1-4d80-a40e-db4724271456/compound/27a89bdf-42f7-478f-91d8-e39881581096"/>
<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/inchi_key/QGZKDVFQNNGYKY-UHFFFAOYSA-O"/>
<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/D02916"/>
<rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02915"/>
<rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5693978"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1132163"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29382"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/76230"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/140912"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/389843"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2022135"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/31633"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113561"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1268"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/43"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19013"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00013"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_13dpg_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="3-Phospho-D-glyceroyl phosphate" metaid="M_13dpg_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-4" fbc:chemicalFormula="C3H4O10P2">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_13dpg_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:57604"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:20189"/>
<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/hmdb/HMDB62758"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/LJQLQCAXBUHEAZ-UWTATZPHSA-J"/>
<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/reactome.compound/29800"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/21215"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00203"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_nh4_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="Ammonium" metaid="M_nh4_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="1" fbc:chemicalFormula="H4N">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_nh4_e">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<rdf:Bag>
<rdf:li rdf:resource="http://identifiers.org/bigg.metabolite/nh4"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIUM"/>
<rdf:li rdf:resource="http://identifiers.org/biocyc/META:AMMONIA"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44284"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:135980"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22533"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13406"/>
<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:13771"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:16134"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:28938"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:22534"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13405"/>
<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/chebi/CHEBI:44269"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:44404"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13407"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/650babc9-9d68-4b73-9332-11972ca26f7b/compound/96667bd9-aeae-4e8f-89d3-100d0396af05"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/32de3cf4-e3e6-4168-956e-32fa5ddb0ce1/compound/41e4c903-407f-49f7-bf6b-0a94d39fa3a7"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/5882df9c-dae1-4d80-a40e-db4724271456/compound/27a89bdf-42f7-478f-91d8-e39881581096"/>
<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/inchi_key/QGZKDVFQNNGYKY-UHFFFAOYSA-O"/>
<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/D02916"/>
<rdf:li rdf:resource="http://identifiers.org/kegg.drug/D02915"/>
<rdf:li rdf:resource="http://identifiers.org/metanetx.chemical/MNXM15"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5693978"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1132163"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29382"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/76230"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/140912"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/389843"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/2022135"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/31633"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113561"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1268"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/43"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd19013"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00013"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_o2_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="O2 O2" metaid="M_o2_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="0" fbc:chemicalFormula="O2">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_o2_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:7860"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:26689"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:29097"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:15379"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:13416"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:27140"/>
<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:23833"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:25366"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:10745"/>
<rdf:li rdf:resource="http://identifiers.org/envipath/5882df9c-dae1-4d80-a40e-db4724271456/compound/d5d12248-82d3-4cf3-b7d0-2e3d096768b4"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB01377"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/MYMOFIZGZYHOMD-UHFFFAOYSA-N"/>
<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/reactome.compound/113534"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113535"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113685"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/5668566"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/189461"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/113533"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1131511"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/352327"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/351593"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/29368"/>
<rdf:li rdf:resource="http://identifiers.org/reactome.compound/1236709"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/1264"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00007"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_2pg_c" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="D-Glycerate 2-phosphate" metaid="M_2pg_c" sboTerm="SBO:0000247" compartment="c" fbc:charge="-3" fbc:chemicalFormula="C3H4O7P">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#M_2pg_c">
<bqbiol:is xmlns:bqbiol="http://biomodels.net/biology-qualifiers/">
<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:39868"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:21028"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:58289"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:24344"/>
<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:11651"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:1267"/>
<rdf:li rdf:resource="http://identifiers.org/chebi/CHEBI:88350"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB00362"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB62707"/>
<rdf:li rdf:resource="http://identifiers.org/hmdb/HMDB03391"/>
<rdf:li rdf:resource="http://identifiers.org/inchi_key/GXIURPTVHJPJLF-UWTATZPHSA-K"/>
<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/reactome.compound/30485"/>
<rdf:li rdf:resource="http://identifiers.org/sabiork/31"/>
<rdf:li rdf:resource="http://identifiers.org/seed.compound/cpd00482"/>
</rdf:Bag>
</bqbiol:is>
</rdf:Description>
</rdf:RDF>
</sbml:annotation>
</species>
<species id="M_o2_e" constant="false" boundaryCondition="false" hasOnlySubstanceUnits="false" name="O2 O2" metaid="M_o2_e" sboTerm="SBO:0000247" compartment="e" fbc:charge="0" fbc:chemicalFormula="O2">
<sbml:annotation xmlns:sbml="http://www.sbml.org/sbml/level3/version1/core">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">