{
  "$schema": "https://vega.github.io/schema/vega/v5.json",
  "width": 860,
  "height": 452.50469658114554,
  "padding": 0,
  "autosize": "none",
  "signals": [
    {
      "name": "mapMaxX",
      "value": 800
    },
    {
      "name": "mapMaxY",
      "value": 432.50469658114554
    },
    {
      "name": "legendWidth",
      "value": 40
    },
    {
      "name": "legendPadding",
      "value": 20
    },
    {
      "name": "signalHeight",
      "value": 20
    },
    {
      "name": "signalPadding",
      "value": 0
    },
    {
      "name": "metaboliteStrokeWidthData",
      "value": 0.299816414887741
    },
    {
      "name": "reactionStrokeWidthData",
      "value": 2.698347733989669
    },
    {
      "name": "arrowHeadStrokeWidthData",
      "value": 0.1499082074438705
    },
    {
      "name": "metaboliteFill",
      "value": "#e0885c"
    },
    {
      "name": "metaboliteStroke",
      "value": "#a34610"
    },
    {
      "name": "metaboliteLightFill",
      "value": "#F0C4AE"
    },
    {
      "name": "metaboliteLightStroke",
      "value": "#D1A388"
    },
    {
      "name": "labelColor",
      "value": "#333333"
    },
    {
      "name": "reverseArrowHeadStrokeColor",
      "value": "#E9E9E9"
    },
    {
      "name": "reverseArrowHeadFillColor",
      "value": "#ffffff"
    },
    {
      "name": "hiddenColor",
      "value": "#E9E9E9"
    },
    {
      "name": "Metabolite_labels",
      "value": true,
      "bind": {
        "input": "checkbox"
      }
    },
    {
      "name": "Reaction_labels",
      "value": true,
      "bind": {
        "input": "checkbox"
      }
    },
    {
      "name": "mapMaxWidth",
      "update": "width - legendWidth - legendPadding"
    },
    {
      "name": "mapMaxHeight",
      "update": "height - signalHeight - signalPadding"
    },
    {
      "name": "mapSize",
      "update": "mapMaxX / mapMaxWidth >  mapMaxY / mapMaxHeight ? [mapMaxWidth, mapMaxWidth / mapMaxX * mapMaxY] : [mapMaxHeight / mapMaxY * mapMaxX, mapMaxHeight]"
    },
    {
      "name": "mapWidth",
      "update": "mapSize[0]"
    },
    {
      "name": "mapHeight",
      "update": "mapSize[1]"
    },
    {
      "name": "mapX",
      "update": "(mapMaxWidth - mapWidth)/2"
    },
    {
      "name": "mapY",
      "update": "(mapMaxHeight - mapHeight)/2"
    },
    {
      "name": "xrange",
      "update": "[mapX, mapWidth + mapX]"
    },
    {
      "name": "yrange",
      "update": "[mapY, mapHeight + mapY]"
    },
    {
      "name": "down",
      "value": null,
      "on": [
        {
          "events": "touchend",
          "update": "null"
        },
        {
          "events": "mousedown, touchstart",
          "update": "xy()"
        }
      ]
    },
    {
      "name": "xcur",
      "value": null,
      "on": [
        {
          "events": "mousedown, touchstart, touchend",
          "update": "slice(xdom)"
        }
      ]
    },
    {
      "name": "ycur",
      "value": null,
      "on": [
        {
          "events": "mousedown, touchstart, touchend",
          "update": "slice(ydom)"
        }
      ]
    },
    {
      "name": "delta",
      "value": [
        0,
        0
      ],
      "on": [
        {
          "events": [
            {
              "source": "window",
              "type": "mousemove",
              "consume": true,
              "between": [
                {
                  "type": "mousedown"
                },
                {
                  "source": "window",
                  "type": "mouseup"
                }
              ]
            },
            {
              "type": "touchmove",
              "consume": true,
              "filter": "event.touches.length === 1"
            }
          ],
          "update": "down ? [down[0]-x(), down[1]-y()] : [0,0]"
        }
      ]
    },
    {
      "name": "anchor",
      "value": [
        0,
        0
      ],
      "on": [
        {
          "events": "wheel",
          "update": "[invert('positionXScale', x()), invert('positionYScale', y())]"
        },
        {
          "events": {
            "type": "touchstart",
            "filter": "event.touches.length===2"
          },
          "update": "[(xdom[0] + xdom[1]) / 2, (ydom[0] + ydom[1]) / 2]"
        }
      ]
    },
    {
      "name": "zoom",
      "value": 1,
      "on": [
        {
          "events": "wheel!",
          "force": true,
          "update": "pow(1.001, event.deltaY * pow(16, event.deltaMode))"
        },
        {
          "events": {
            "signal": "dist2"
          },
          "force": true,
          "update": "dist1 / dist2"
        }
      ]
    },
    {
      "name": "dist1",
      "value": 0,
      "on": [
        {
          "events": {
            "type": "touchstart",
            "filter": "event.touches.length===2"
          },
          "update": "pinchDistance(event)"
        },
        {
          "events": {
            "signal": "dist2"
          },
          "update": "dist2"
        }
      ]
    },
    {
      "name": "dist2",
      "value": 0,
      "on": [
        {
          "events": {
            "type": "touchmove",
            "consume": true,
            "filter": "event.touches.length===2"
          },
          "update": "pinchDistance(event)"
        }
      ]
    },
    {
      "name": "xdom",
      "update": "slice([0, mapMaxX])",
      "on": [
        {
          "events": {
            "signal": "delta"
          },
          "update": "[xcur[0] + span(xcur) * delta[0] / mapWidth, xcur[1] + span(xcur) * delta[0] / mapWidth]"
        },
        {
          "events": {
            "signal": "zoom"
          },
          "update": "[anchor[0] + (xdom[0] - anchor[0]) * zoom, anchor[0] + (xdom[1] - anchor[0]) * zoom]"
        }
      ]
    },
    {
      "name": "ydom",
      "update": "slice([0, mapMaxY])",
      "on": [
        {
          "events": {
            "signal": "delta"
          },
          "update": "[ycur[0] + span(ycur) * delta[1] / mapHeight, ycur[1] + span(ycur) * delta[1] / mapHeight]"
        },
        {
          "events": {
            "signal": "zoom"
          },
          "update": "[anchor[1] + (ydom[0] - anchor[1]) * zoom, anchor[1] + (ydom[1] - anchor[1]) * zoom]"
        }
      ]
    },
    {
      "name": "currentZoom",
      "update": "(xrange[1] - xrange[0]) / (xdom[1] - xdom[0])"
    },
    {
      "name": "hover",
      "value": null,
      "on": [
        {
          "events": "*:mouseover",
          "update": "item().datum"
        },
        {
          "events": "*:mouseout",
          "update": "null"
        }
      ]
    }
  ],
  "data": [
    {
      "name": "metabolites",
      "values": [
        {
          "id": "2076729",
          "biggId": "hexACP_c",
          "name": "Hexanoyl-ACP (n-C6:0ACP)",
          "x": 222.39356021797647,
          "y": 333.9992263774365,
          "size": 14.990820744387051,
          "labelX": 201.88431678442885,
          "labelY": 339.9669345047272,
          "reactionIds": [
            "2076184",
            "2076099",
            "2076073"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076899",
            "2076736",
            "2076702",
            "2076721",
            "2077498",
            "2076898",
            "2076734",
            "2076735",
            "2076737",
            "2076729",
            "2077497",
            "2077499",
            "2076897"
          ]
        },
        {
          "id": "2076897",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 228.3898885157313,
          "y": 294.7127356063066,
          "size": 59.963282977548204,
          "labelX": 232.8871347390474,
          "labelY": 296.2118176807453,
          "reactionIds": [
            "2076099"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ]
        },
        {
          "id": "2076706",
          "biggId": "3ohexACP_c",
          "name": "3-Oxohexanoyl-[acyl-carrier protein]",
          "x": 222.39356021797647,
          "y": 198.77148284222943,
          "size": 14.990820744387051,
          "labelX": 226.8908064412926,
          "labelY": 200.27056491666815,
          "reactionIds": [
            "2076070",
            "2076069"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2076715",
            "2076709",
            "2076714",
            "2076716",
            "2076717",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ]
        },
        {
          "id": "2077613",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 486.88398969451754,
          "y": 388.59779771429567,
          "size": 59.963282977548204,
          "labelX": 474.02855573516956,
          "labelY": 389.4420561443043,
          "reactionIds": [
            "2076199"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ]
        },
        {
          "id": "2076891",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 99.40737682931909,
          "y": 234.25182393887852,
          "size": 59.963282977548204,
          "labelX": 103.9046230526352,
          "labelY": 235.7509060133172,
          "reactionIds": [
            "2076098"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ]
        },
        {
          "id": "2076899",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 229.32092242421874,
          "y": 327.6925412439581,
          "size": 59.963282977548204,
          "labelX": 230.0940696122685,
          "labelY": 326.0882013558942,
          "reactionIds": [
            "2076099"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ]
        },
        {
          "id": "2077592",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 382.9786663812619,
          "y": 325.02467868691843,
          "size": 59.963282977548204,
          "labelX": 369.41435252201643,
          "labelY": 326.8521241493421,
          "reactionIds": [
            "2076196"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ]
        },
        {
          "id": "2077106",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 594.1038614435321,
          "y": 205.6894790919717,
          "size": 59.963282977548204,
          "labelX": 598.6011076668482,
          "labelY": 207.18856116641038,
          "reactionIds": [
            "2076129"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ]
        },
        {
          "id": "2077107",
          "biggId": "h_c",
          "name": "H+",
          "x": 582.1112048480225,
          "y": 205.6894790919717,
          "size": 59.963282977548204,
          "labelX": 571.450886725117,
          "labelY": 207.59817363167207,
          "reactionIds": [
            "2076129"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ]
        },
        {
          "id": "2077105",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 594.1038614435321,
          "y": 238.6692847296232,
          "size": 59.963282977548204,
          "labelX": 598.6011076668482,
          "labelY": 240.1683668040619,
          "reactionIds": [
            "2076129"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ]
        },
        {
          "id": "2077100",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 580.8694865474761,
          "y": 179.69249485252507,
          "size": 59.963282977548204,
          "labelX": 571.2017247199509,
          "labelY": 183.62707291635826,
          "reactionIds": [
            "2076128"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ]
        },
        {
          "id": "2077101",
          "biggId": "3omrsACP_c",
          "name": "3-Oxotetradecanoyl-[acyl-carrier protein]",
          "x": 588.1075331457773,
          "y": 199.69315079421685,
          "size": 14.990820744387051,
          "labelX": 580.6121227735838,
          "labelY": 193.69682249646203,
          "reactionIds": [
            "2076129",
            "2076128"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077100",
            "2077106",
            "2077097"
          ]
        },
        {
          "id": "2077108",
          "biggId": "3hmrsACP_c",
          "name": "(R)-3-Hydroxytetradecanoyl-[acyl-carrier protein]",
          "x": 588.1075331457773,
          "y": 244.66561302737801,
          "size": 14.990820744387051,
          "labelX": 592.6047793690934,
          "labelY": 246.16469510181673,
          "reactionIds": [
            "2076129",
            "2076130"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077113",
            "2077107",
            "2077106",
            "2077112"
          ]
        },
        {
          "id": "2076760",
          "biggId": "3hoctACP_c",
          "name": "(R)-3-Hydroxyoctanoyl-[acyl-carrier protein]",
          "x": 304.2632139960394,
          "y": 243.0819939000236,
          "size": 14.990820744387051,
          "labelX": 308.7604602193555,
          "labelY": 244.5810759744623,
          "reactionIds": [
            "2076076",
            "2076077"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076764",
            "2076734",
            "2076765"
          ]
        },
        {
          "id": "2076765",
          "biggId": "toct2eACP_c",
          "name": "Trans-Oct-2-enoyl-[acyl-carrier protein]",
          "x": 304.2632139960394,
          "y": 288.0544561331848,
          "size": 14.990820744387051,
          "labelX": 308.7604602193555,
          "labelY": 289.55353820762343,
          "reactionIds": [
            "2076101",
            "2076077",
            "2076185"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077506",
            "2076760",
            "2076912",
            "2077503",
            "2076913",
            "2076765",
            "2076915",
            "2076764",
            "2077504",
            "2076914"
          ]
        },
        {
          "id": "2076764",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 310.2595422937942,
          "y": 282.05812783542996,
          "size": 59.963282977548204,
          "labelX": 314.7567885171103,
          "labelY": 283.5572099098686,
          "reactionIds": [
            "2076077"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ]
        },
        {
          "id": "2077662",
          "biggId": "amp_c",
          "name": "AMP",
          "x": 679.6191910100767,
          "y": 356.88768741343983,
          "size": 59.963282977548204,
          "labelX": 667.4352696948157,
          "labelY": 359.3679801913869,
          "reactionIds": [
            "2076205"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ]
        },
        {
          "id": "2077667",
          "biggId": "3hoctaACP_c",
          "name": "(R)-3-Hydroxyoctadecanoyl-[acyl-carrier protein]",
          "x": 772.956647213966,
          "y": 250.01575554404928,
          "size": 14.990820744387051,
          "labelX": 777.4538934372822,
          "labelY": 251.51483761848797,
          "reactionIds": [
            "2076206",
            "2076207"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077669",
            "2077644",
            "2077674",
            "2077670",
            "2077667",
            "2077675",
            "2077668"
          ]
        },
        {
          "id": "2077583",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 396.7711364331845,
          "y": 381.4908842626901,
          "size": 59.963282977548204,
          "labelX": 384.5203859219292,
          "labelY": 381.01956641711826,
          "reactionIds": [
            "2076195"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ]
        },
        {
          "id": "2077669",
          "biggId": "h_c",
          "name": "H+",
          "x": 766.9603189162112,
          "y": 211.03962160864293,
          "size": 59.963282977548204,
          "labelX": 757.119298921196,
          "labelY": 213.3580018109719,
          "reactionIds": [
            "2076206"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ]
        },
        {
          "id": "2077584",
          "biggId": "ppi_c",
          "name": "Diphosphate",
          "x": 393.6577596287814,
          "y": 357.3776220743017,
          "size": 59.963282977548204,
          "labelX": 382.0638090908629,
          "labelY": 358.87670414874043,
          "reactionIds": [
            "2076195"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ]
        },
        {
          "id": "2077585",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 397.92684965942044,
          "y": 390.35750090932015,
          "size": 59.963282977548204,
          "labelX": 383.3773358401697,
          "labelY": 391.8565829837588,
          "reactionIds": [
            "2076195"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ]
        },
        {
          "id": "2077568",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 298.5772425340082,
          "y": 392.07501466534393,
          "size": 59.963282977548204,
          "labelX": 286.95108515464676,
          "labelY": 394.8902585942984,
          "reactionIds": [
            "2076193"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ]
        },
        {
          "id": "2077569",
          "biggId": "ppi_c",
          "name": "Diphosphate",
          "x": 295.10457645409815,
          "y": 355.1466502667783,
          "size": 59.963282977548204,
          "labelX": 286.43983814542224,
          "labelY": 352.36807821864875,
          "reactionIds": [
            "2076193"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ]
        },
        {
          "id": "2077085",
          "biggId": "ddcaACP_c",
          "name": "Dodecanoyl-ACP (n-C12:0ACP)",
          "x": 494.3114363115296,
          "y": 335.70684432816677,
          "size": 14.990820744387051,
          "labelX": 473.59314119807,
          "labelY": 338.59755474241155,
          "reactionIds": [
            "2076128",
            "2076200",
            "2076214",
            "2076199",
            "2076126"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077083",
            "2077621",
            "2077101",
            "2077617",
            "2077724",
            "2077085",
            "2077613",
            "2077722",
            "2077615",
            "2077623",
            "2077082",
            "2077098",
            "2077622",
            "2077723",
            "2077084",
            "2077100",
            "2077078",
            "2077097",
            "2077616",
            "2077614"
          ]
        },
        {
          "id": "2077084",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 500.3077646092844,
          "y": 329.71051603041195,
          "size": 59.963282977548204,
          "labelX": 502.3470432515628,
          "labelY": 327.5225735359272,
          "reactionIds": [
            "2076126"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ]
        },
        {
          "id": "2077083",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 505.52102747577237,
          "y": 303.28531500798323,
          "size": 59.963282977548204,
          "labelX": 509.4231059086949,
          "labelY": 304.4864106017071,
          "reactionIds": [
            "2076126"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ]
        },
        {
          "id": "2077082",
          "biggId": "h_c",
          "name": "H+",
          "x": 500.3077646092844,
          "y": 296.73071039276044,
          "size": 59.963282977548204,
          "labelX": 504.8050108326005,
          "labelY": 298.22979246719916,
          "reactionIds": [
            "2076126"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ]
        },
        {
          "id": "2077089",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 688.4825620379537,
          "y": 171.15667554330287,
          "size": 59.963282977548204,
          "labelX": 690.9181312247151,
          "labelY": 169.81548018930187,
          "reactionIds": [
            "2076127"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ]
        },
        {
          "id": "2075382",
          "biggId": "accoa_c",
          "name": "Acetyl-CoA",
          "x": 166.19031446477746,
          "y": 5.410749362427201,
          "size": 14.990820744387051,
          "labelX": 159.25984137044125,
          "labelY": 0.0,
          "reactionIds": [
            "2076191",
            "2076100",
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2076652",
            "2077541",
            "2075382",
            "2077553",
            "2077554",
            "2076908",
            "2076655",
            "2076657",
            "2076653",
            "2076654",
            "2076906",
            "2076905",
            "2076656"
          ]
        },
        {
          "id": "2076721",
          "biggId": "thex2eACP_c",
          "name": "Trans-Hex-2-enoyl-[acyl-carrier protein]",
          "x": 222.39356021797647,
          "y": 288.71640730855177,
          "size": 14.990820744387051,
          "labelX": 226.8908064412926,
          "labelY": 290.2154893829904,
          "reactionIds": [
            "2076071",
            "2076184",
            "2076099"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076899",
            "2076721",
            "2076722",
            "2076714",
            "2077498",
            "2076898",
            "2076729",
            "2077497",
            "2077499",
            "2076897"
          ]
        },
        {
          "id": "2077639",
          "biggId": "h_c",
          "name": "H+",
          "x": 623.3922506702452,
          "y": 382.25872947447414,
          "size": 59.963282977548204,
          "labelX": 627.8894968935614,
          "labelY": 383.7578115489128,
          "reactionIds": [
            "2076202"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ]
        },
        {
          "id": "2076722",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 228.3898885157313,
          "y": 282.72007901079695,
          "size": 59.963282977548204,
          "labelX": 232.8871347390474,
          "labelY": 284.2191610852356,
          "reactionIds": [
            "2076071"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ]
        },
        {
          "id": "2077637",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 623.1804906877574,
          "y": 391.0942372401649,
          "size": 59.963282977548204,
          "labelX": 627.6777369110735,
          "labelY": 392.5933193146036,
          "reactionIds": [
            "2076202"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ]
        },
        {
          "id": "2077146",
          "biggId": "palmACP_c",
          "name": "Palmitoyl-ACP (n-C16:0ACP)",
          "x": 688.8101451895113,
          "y": 335.0197544551983,
          "size": 14.990820744387051,
          "labelX": 666.1867422073303,
          "labelY": 339.1425961467393,
          "reactionIds": [
            "2076203",
            "2076205",
            "2076135",
            "2076212",
            "2076153"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077144",
            "2077708",
            "2077648",
            "2077710",
            "2077659",
            "2077646",
            "2077132",
            "2077660",
            "2077662",
            "2077644",
            "2077145",
            "2077278",
            "2077143",
            "2077661",
            "2077709",
            "2077645",
            "2077277",
            "2077146",
            "2077276",
            "2077275"
          ]
        },
        {
          "id": "2077631",
          "biggId": "amp_c",
          "name": "AMP",
          "x": 579.4933010202734,
          "y": 350.9151045794949,
          "size": 59.963282977548204,
          "labelX": 565.6648544625117,
          "labelY": 354.3776328240871,
          "reactionIds": [
            "2076201"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ]
        },
        {
          "id": "2077632",
          "biggId": "ttdca_c",
          "name": "Tetradecanoate (n-C14:0)",
          "x": 614.1234876897789,
          "y": 397.74509639288215,
          "size": 14.990820744387051,
          "labelX": 618.620733913095,
          "labelY": 399.24417846732086,
          "reactionIds": [
            "2076202",
            "2076201"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077629",
            "2077639",
            "2077637",
            "2077628",
            "2077632",
            "2077631",
            "2077117",
            "2077636",
            "2077630"
          ]
        },
        {
          "id": "2077708",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 667.7686837011179,
          "y": 297.6822899729394,
          "size": 59.963282977548204,
          "labelX": 651.3729858935129,
          "labelY": 299.1813720473781,
          "reactionIds": [
            "2076212"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ]
        },
        {
          "id": "2077709",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 667.7686105037509,
          "y": 327.3847567042961,
          "size": 59.963282977548204,
          "labelX": 652.6018964866648,
          "labelY": 327.6548549882159,
          "reactionIds": [
            "2076212"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ]
        },
        {
          "id": "2077036",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 407.7786296673724,
          "y": 237.37851752859157,
          "size": 59.963282977548204,
          "labelX": 412.2758758906885,
          "labelY": 238.8775996030303,
          "reactionIds": [
            "2076119"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ]
        },
        {
          "id": "2077037",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 407.77862966737223,
          "y": 204.39871189094006,
          "size": 59.963282977548204,
          "labelX": 412.2758758906884,
          "labelY": 205.89779396537878,
          "reactionIds": [
            "2076119"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ]
        },
        {
          "id": "2077032",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 395.9393874738574,
          "y": 183.67859888687596,
          "size": 59.963282977548204,
          "labelX": 378.08365838706345,
          "labelY": 184.30611991344642,
          "reactionIds": [
            "2076118"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ]
        },
        {
          "id": "2077031",
          "biggId": "h_c",
          "name": "H+",
          "x": 362.0380744958846,
          "y": 165.50823487111631,
          "size": 59.963282977548204,
          "labelX": 353.9219504522438,
          "labelY": 164.1669663197484,
          "reactionIds": [
            "2076118"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ]
        },
        {
          "id": "2077038",
          "biggId": "3hdecACP_c",
          "name": "(R)-3-Hydroxydecanoyl-[acyl-carrier protein]",
          "x": 401.78230136961747,
          "y": 243.37484582634642,
          "size": 14.990820744387051,
          "labelX": 406.27954759293357,
          "labelY": 244.8739279007851,
          "reactionIds": [
            "2076119",
            "2076120"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077044",
            "2077043",
            "2077028",
            "2077038"
          ]
        },
        {
          "id": "2077039",
          "biggId": "h_c",
          "name": "H+",
          "x": 395.78597307186266,
          "y": 204.39871189094006,
          "size": 59.963282977548204,
          "labelX": 388.1798882808922,
          "labelY": 207.44950494663004,
          "reactionIds": [
            "2076119"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ]
        },
        {
          "id": "2077681",
          "biggId": "h_c",
          "name": "H+",
          "x": 783.6247974551316,
          "y": 305.55916191511153,
          "size": 59.963282977548204,
          "labelX": 788.1220436784477,
          "labelY": 307.05824398955025,
          "reactionIds": [
            "2076208"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ]
        },
        {
          "id": "2077696",
          "biggId": "amp_c",
          "name": "AMP",
          "x": 762.7125293193446,
          "y": 359.68063623646447,
          "size": 59.963282977548204,
          "labelX": 750.2184707604607,
          "labelY": 362.15997744864165,
          "reactionIds": [
            "2076210"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ]
        },
        {
          "id": "2077682",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 778.9529755117209,
          "y": 333.96435171261675,
          "size": 59.963282977548204,
          "labelX": 783.450221735037,
          "labelY": 335.46343378705546,
          "reactionIds": [
            "2076208"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ]
        },
        {
          "id": "2077687",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 753.7928445817006,
          "y": 333.31084562079116,
          "size": 59.963282977548204,
          "labelX": 736.3975635314914,
          "labelY": 332.52265637384016,
          "reactionIds": [
            "2076209"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ]
        },
        {
          "id": "2077697",
          "biggId": "ocdca_c",
          "name": "Octadecanoate (n-C18:0)",
          "x": 795.5027537766839,
          "y": 431.0056145067068,
          "size": 14.990820744387051,
          "labelX": 800.0,
          "labelY": 432.50469658114554,
          "reactionIds": [
            "2076210"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ]
        },
        {
          "id": "2077689",
          "biggId": "h_c",
          "name": "H+",
          "x": 755.197136065983,
          "y": 299.3507808454012,
          "size": 59.963282977548204,
          "labelX": 748.257879287617,
          "labelY": 298.889344644363,
          "reactionIds": [
            "2076209"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ]
        },
        {
          "id": "2077688",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 753.7928445817006,
          "y": 305.8858417636574,
          "size": 59.963282977548204,
          "labelX": 738.0312555636885,
          "labelY": 306.40466470035767,
          "reactionIds": [
            "2076209"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ]
        },
        {
          "id": "2077132",
          "biggId": "tpalm2eACP_c",
          "name": "Trans-Hexadec-2-enoyl-[acyl-carrier protein]",
          "x": 689.2198308521399,
          "y": 289.2279940941469,
          "size": 14.990820744387051,
          "labelX": 693.717077075456,
          "labelY": 290.7270761685856,
          "reactionIds": [
            "2076135",
            "2076133",
            "2076212"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077144",
            "2077127",
            "2077146",
            "2077708",
            "2077145",
            "2077143",
            "2077131",
            "2077710",
            "2077709"
          ]
        },
        {
          "id": "2077131",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 694.8064734872662,
          "y": 284.0509639242823,
          "size": 59.963282977548204,
          "labelX": 699.3037197105823,
          "labelY": 285.55004599872103,
          "reactionIds": [
            "2076133"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ]
        },
        {
          "id": "2077695",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 770.5546024212522,
          "y": 399.522329035652,
          "size": 59.963282977548204,
          "labelX": 758.0606170597351,
          "labelY": 402.0016702478291,
          "reactionIds": [
            "2076210"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ]
        },
        {
          "id": "2077120",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 594.1038614435321,
          "y": 328.6142091959455,
          "size": 59.963282977548204,
          "labelX": 597.3597535213206,
          "labelY": 327.0098693078817,
          "reactionIds": [
            "2076131"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ]
        },
        {
          "id": "2077693",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 766.2094603263874,
          "y": 389.7196644609007,
          "size": 59.963282977548204,
          "labelX": 754.0421548134162,
          "labelY": 391.5454995812522,
          "reactionIds": [
            "2076210"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ]
        },
        {
          "id": "2076673",
          "biggId": "butACP_c",
          "name": "Butyryl-ACP (n-C4:0ACP)",
          "x": 93.41104853156426,
          "y": 273.22795787428487,
          "size": 14.990820744387051,
          "labelX": 75.27647407550397,
          "labelY": 275.97051681789173,
          "reactionIds": [
            "2076098",
            "2076069"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2076709",
            "2076891",
            "2076673",
            "2076893",
            "2076708",
            "2076710",
            "2076892",
            "2076706",
            "2076669"
          ]
        },
        {
          "id": "2077143",
          "biggId": "h_c",
          "name": "H+",
          "x": 694.8064734872662,
          "y": 296.04362051979194,
          "size": 59.963282977548204,
          "labelX": 699.3037197105823,
          "labelY": 297.54270259423066,
          "reactionIds": [
            "2076135"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ]
        },
        {
          "id": "2077636",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 619.907982807679,
          "y": 355.1692623472831,
          "size": 59.963282977548204,
          "labelX": 624.4052290309951,
          "labelY": 356.6683444217218,
          "reactionIds": [
            "2076202"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ]
        },
        {
          "id": "2077630",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 584.7291818731384,
          "y": 392.730564377571,
          "size": 59.963282977548204,
          "labelX": 571.228000742858,
          "labelY": 394.88410410960523,
          "reactionIds": [
            "2076201"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ]
        },
        {
          "id": "2077144",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 699.4782954306768,
          "y": 301.27166925439695,
          "size": 59.963282977548204,
          "labelX": 703.975541653993,
          "labelY": 302.7707513288357,
          "reactionIds": [
            "2076135"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ]
        },
        {
          "id": "2077145",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 694.8064734872662,
          "y": 329.02342615744345,
          "size": 59.963282977548204,
          "labelX": 698.3234605728438,
          "labelY": 328.2352369104925,
          "reactionIds": [
            "2076135"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ]
        },
        {
          "id": "2076695",
          "biggId": "actACP_c",
          "name": "Acetoacetyl-ACP",
          "x": 93.47668343931996,
          "y": 137.10911252213756,
          "size": 14.990820744387051,
          "labelX": 97.97392966263607,
          "labelY": 138.60819459657625,
          "reactionIds": [
            "2076190",
            "2076066",
            "2076100"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076680",
            "2076702",
            "2077541",
            "2075382",
            "2076908",
            "2076687",
            "2077547",
            "2077545",
            "2076686",
            "2076688",
            "2077549",
            "2076906",
            "2076905"
          ]
        },
        {
          "id": "2077078",
          "biggId": "tddec2eACP_c",
          "name": "Trans-Dodec-2-enoyl-[acyl-carrier protein]",
          "x": 494.3114363115296,
          "y": 290.32469643237704,
          "size": 14.990820744387051,
          "labelX": 498.8086825348457,
          "labelY": 291.82377850681576,
          "reactionIds": [
            "2076214",
            "2076125",
            "2076126"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077082",
            "2077077",
            "2077083",
            "2077723",
            "2077084",
            "2077722",
            "2077073",
            "2077078",
            "2077724"
          ]
        },
        {
          "id": "2077072",
          "biggId": "h_c",
          "name": "H+",
          "x": 488.31510801377476,
          "y": 206.78578592643814,
          "size": 59.963282977548204,
          "labelX": 478.84699200451286,
          "labelY": 209.52622214640448,
          "reactionIds": [
            "2076124"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ]
        },
        {
          "id": "2077073",
          "biggId": "3hddecACP_c",
          "name": "(R)-3-Hydroxydodecanoyl-[acyl-carrier protein]",
          "x": 494.3114363115296,
          "y": 245.76191986184446,
          "size": 14.990820744387051,
          "labelX": 498.8086825348457,
          "labelY": 247.26100193628318,
          "reactionIds": [
            "2076125",
            "2076124"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077077",
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077078",
            "2077072"
          ]
        },
        {
          "id": "2077070",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 500.3077646092844,
          "y": 239.76559156408965,
          "size": 59.963282977548204,
          "labelX": 504.8050108326005,
          "labelY": 241.26467363852836,
          "reactionIds": [
            "2076124"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ]
        },
        {
          "id": "2077071",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 500.3077646092844,
          "y": 206.78578592643814,
          "size": 59.963282977548204,
          "labelX": 504.8050108326005,
          "labelY": 208.28486800087686,
          "reactionIds": [
            "2076124"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ]
        },
        {
          "id": "2077077",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 500.3077646092844,
          "y": 284.7380537972508,
          "size": 59.963282977548204,
          "labelX": 504.8050108326005,
          "labelY": 286.23713587168953,
          "reactionIds": [
            "2076125"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ]
        },
        {
          "id": "2077278",
          "biggId": "h_c",
          "name": "H+",
          "x": 725.0072678925866,
          "y": 389.04168035754554,
          "size": 59.963282977548204,
          "labelX": 732.910460795869,
          "labelY": 387.97753703732144,
          "reactionIds": [
            "2076153"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ]
        },
        {
          "id": "2077275",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 722.9354896193975,
          "y": 351.80976647837946,
          "size": 59.963282977548204,
          "labelX": 727.4327358427137,
          "labelY": 353.3088485528182,
          "reactionIds": [
            "2076153"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ]
        },
        {
          "id": "2077276",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 723.5896544875254,
          "y": 399.18112601747714,
          "size": 59.963282977548204,
          "labelX": 728.0869007108415,
          "labelY": 400.6802080919158,
          "reactionIds": [
            "2076153"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ]
        },
        {
          "id": "2077277",
          "biggId": "hdca_c",
          "name": "Hexadecanoate (n-C16:0)",
          "x": 716.2744560326789,
          "y": 409.1981856799252,
          "size": 14.990820744387051,
          "labelX": 720.771702255995,
          "labelY": 410.6972677543639,
          "reactionIds": [
            "2076205",
            "2076153"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077278",
            "2077661",
            "2077276",
            "2077275",
            "2077659"
          ]
        },
        {
          "id": "2077670",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 778.9529755117209,
          "y": 244.01942724629447,
          "size": 59.963282977548204,
          "labelX": 783.450221735037,
          "labelY": 245.51850932073316,
          "reactionIds": [
            "2076206"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ]
        },
        {
          "id": "2077126",
          "biggId": "h_c",
          "name": "H+",
          "x": 682.8138168917566,
          "y": 206.09869605346967,
          "size": 59.963282977548204,
          "labelX": 673.3824093620029,
          "labelY": 209.23644758105578,
          "reactionIds": [
            "2076132"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ]
        },
        {
          "id": "2077675",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 778.9529755117209,
          "y": 288.9918894794556,
          "size": 59.963282977548204,
          "labelX": 783.450221735037,
          "labelY": 290.4909715538943,
          "reactionIds": [
            "2076207"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ]
        },
        {
          "id": "2077674",
          "biggId": "toctd2eACP_c",
          "name": "Trans-octadec-2-enoyl-[acyl-carrier protein]",
          "x": 772.956647213966,
          "y": 294.9882177772104,
          "size": 14.990820744387051,
          "labelX": 777.4538934372822,
          "labelY": 296.48729985164914,
          "reactionIds": [
            "2076207",
            "2076209",
            "2076208"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077680",
            "2077687",
            "2077674",
            "2077681",
            "2077682",
            "2077667",
            "2077689",
            "2077675",
            "2077688"
          ]
        },
        {
          "id": "2077553",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 12.571528822093587,
          "y": 27.15831998665402,
          "size": 59.963282977548204,
          "labelX": 0.0,
          "labelY": 30.51946987806764,
          "reactionIds": [
            "2076191"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ]
        },
        {
          "id": "2077554",
          "biggId": "coa_c",
          "name": "Coenzyme A",
          "x": 15.364603098543363,
          "y": 56.10370635199899,
          "size": 59.963282977548204,
          "labelX": 3.103412812831685,
          "labelY": 57.60278842643769,
          "reactionIds": [
            "2076191"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ]
        },
        {
          "id": "2077679",
          "biggId": "ocdcaACP_c",
          "name": "Octadecanoyl-ACP (n-C18:0ACP)",
          "x": 772.956647213966,
          "y": 339.96068001037156,
          "size": 14.990820744387051,
          "labelX": 777.4538934372822,
          "labelY": 341.4597620848103,
          "reactionIds": [
            "2076210",
            "2076209",
            "2076208"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077680",
            "2077694",
            "2077687",
            "2077674",
            "2077682",
            "2077681",
            "2077695",
            "2077689",
            "2077688"
          ]
        },
        {
          "id": "2077097",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 587.9455351862686,
          "y": 170.00986360480815,
          "size": 59.963282977548204,
          "labelX": 590.3810311756631,
          "labelY": 168.35831141508353,
          "reactionIds": [
            "2076128"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ]
        },
        {
          "id": "2077090",
          "biggId": "h_c",
          "name": "H+",
          "x": 649.4999355020708,
          "y": 164.66907808052727,
          "size": 59.963282977548204,
          "labelX": 640.7631709843496,
          "labelY": 163.94859639797357,
          "reactionIds": [
            "2076127"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ]
        },
        {
          "id": "2077092",
          "biggId": "3opalmACP_c",
          "name": "3-Oxohexadecanoyl-[acyl-carrier protein]",
          "x": 688.8101451895113,
          "y": 200.10236775571485,
          "size": 14.990820744387051,
          "labelX": 662.3276306287875,
          "labelY": 197.5299194928206,
          "reactionIds": [
            "2076132",
            "2076127"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077093",
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077089",
            "2077126",
            "2077117",
            "2077090"
          ]
        },
        {
          "id": "2077093",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 681.6039245564028,
          "y": 180.98053214930144,
          "size": 59.963282977548204,
          "labelX": 671.6257326957872,
          "labelY": 184.91518341050156,
          "reactionIds": [
            "2076127"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ]
        },
        {
          "id": "2077098",
          "biggId": "h_c",
          "name": "H+",
          "x": 550.4563223862878,
          "y": 161.72299035524472,
          "size": 59.963282977548204,
          "labelX": 542.0298415069234,
          "labelY": 161.93350598249498,
          "reactionIds": [
            "2076128"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ]
        },
        {
          "id": "2076736",
          "biggId": "h_c",
          "name": "H+",
          "x": 270.17658716107223,
          "y": 167.37915441377518,
          "size": 59.963282977548204,
          "labelX": 262.3088583820607,
          "labelY": 165.10593698683334,
          "reactionIds": [
            "2076073"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ]
        },
        {
          "id": "2076737",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 296.218016071951,
          "y": 187.61554638904838,
          "size": 59.963282977548204,
          "labelX": 284.25493121267544,
          "labelY": 185.7146107702411,
          "reactionIds": [
            "2076073"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ]
        },
        {
          "id": "2076734",
          "biggId": "3ooctACP_c",
          "name": "3-Oxooctanoyl-[acyl-carrier protein]",
          "x": 304.2632139960394,
          "y": 198.10953166686244,
          "size": 14.990820744387051,
          "labelX": 309.05841010138687,
          "labelY": 194.7193224207832,
          "reactionIds": [
            "2076076",
            "2076073"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076736",
            "2076702",
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ]
        },
        {
          "id": "2076735",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 303.5767040629599,
          "y": 178.1459358760011,
          "size": 59.963282977548204,
          "labelX": 306.133561286701,
          "labelY": 175.87264525169235,
          "reactionIds": [
            "2076073"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ]
        },
        {
          "id": "2077601",
          "biggId": "h_c",
          "name": "H+",
          "x": 438.4267331819162,
          "y": 394.41256183909695,
          "size": 59.963282977548204,
          "labelX": 442.9239794052323,
          "labelY": 395.91164391353567,
          "reactionIds": [
            "2076197"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ]
        },
        {
          "id": "2077043",
          "biggId": "tdec2eACP_c",
          "name": "Trans-Dec-2-enoyl-[acyl-carrier protein]",
          "x": 401.78230136961747,
          "y": 288.34730805950755,
          "size": 14.990820744387051,
          "labelX": 406.27954759293357,
          "labelY": 289.8463901339463,
          "reactionIds": [
            "2076121",
            "2076196",
            "2076120"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077051",
            "2077593",
            "2077048",
            "2077049",
            "2077050",
            "2077594",
            "2077044",
            "2077043",
            "2077592",
            "2077038"
          ]
        },
        {
          "id": "2077044",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 407.7786296673724,
          "y": 282.35097976175274,
          "size": 59.963282977548204,
          "labelX": 412.2758758906885,
          "labelY": 283.85006183619146,
          "reactionIds": [
            "2076120"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ]
        },
        {
          "id": "2077049",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 407.77862966737223,
          "y": 294.34363635726237,
          "size": 59.963282977548204,
          "labelX": 410.96231254269816,
          "labelY": 295.8427184317011,
          "reactionIds": [
            "2076121"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ]
        },
        {
          "id": "2077048",
          "biggId": "dcaACP_c",
          "name": "Decanoyl-ACP (n-C10:0ACP)",
          "x": 401.78230136961747,
          "y": 330.0358436233514,
          "size": 14.990820744387051,
          "labelX": 381.85051196366976,
          "labelY": 335.015167705176,
          "reactionIds": [
            "2076195",
            "2076197",
            "2076122",
            "2076121",
            "2076196"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077584",
            "2077056",
            "2077048",
            "2077049",
            "2077587",
            "2077043",
            "2077058",
            "2077594",
            "2077601",
            "2077592",
            "2077059",
            "2077598",
            "2077599",
            "2077050",
            "2077051",
            "2077586",
            "2077593",
            "2077057",
            "2077583",
            "2077585"
          ]
        },
        {
          "id": "2077124",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 694.8064734872662,
          "y": 239.07850169112118,
          "size": 59.963282977548204,
          "labelX": 699.3037197105823,
          "labelY": 240.57758376555987,
          "reactionIds": [
            "2076132"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ]
        },
        {
          "id": "2077125",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 694.8064734872662,
          "y": 206.09869605346967,
          "size": 59.963282977548204,
          "labelX": 699.3037197105823,
          "labelY": 207.59777812790836,
          "reactionIds": [
            "2076132"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ]
        },
        {
          "id": "2077694",
          "biggId": "ppi_c",
          "name": "Diphosphate",
          "x": 764.5757682941902,
          "y": 353.4723283641211,
          "size": 59.963282977548204,
          "labelX": 751.1014505975679,
          "labelY": 352.6840659198032,
          "reactionIds": [
            "2076210"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ]
        },
        {
          "id": "2077127",
          "biggId": "3hpalmACP_c",
          "name": "R-3-hydroxypalmitoyl-[acyl-carrier protein]",
          "x": 688.8101451895113,
          "y": 245.074829988876,
          "size": 14.990820744387051,
          "labelX": 693.3073914128274,
          "labelY": 246.5739120633147,
          "reactionIds": [
            "2076132",
            "2076133"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126",
            "2077131"
          ]
        },
        {
          "id": "2077680",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 778.9529755117209,
          "y": 300.98454607496524,
          "size": 59.963282977548204,
          "labelX": 783.450221735037,
          "labelY": 302.48362814940396,
          "reactionIds": [
            "2076208"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ]
        },
        {
          "id": "2076893",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 99.40737682931909,
          "y": 267.23162957653,
          "size": 59.963282977548204,
          "labelX": 103.9046230526352,
          "labelY": 268.7307116509687,
          "reactionIds": [
            "2076098"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ]
        },
        {
          "id": "2076892",
          "biggId": "h_c",
          "name": "H+",
          "x": 87.41472023380945,
          "y": 234.25182393887852,
          "size": 59.963282977548204,
          "labelX": 78.56728129731137,
          "labelY": 236.37154648739758,
          "reactionIds": [
            "2076098"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ]
        },
        {
          "id": "2076688",
          "biggId": "h_c",
          "name": "H+",
          "x": 99.40737682931909,
          "y": 144.3068994725562,
          "size": 59.963282977548204,
          "labelX": 103.9046230526352,
          "labelY": 145.8059815469949,
          "reactionIds": [
            "2076066"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ]
        },
        {
          "id": "2076680",
          "biggId": "3haACP_c",
          "name": "(3R)-3-Hydroxyacyl-[acyl-carrier protein]",
          "x": 93.41104853156426,
          "y": 183.28303340796253,
          "size": 14.990820744387051,
          "labelX": 97.90829475488039,
          "labelY": 184.78211548240125,
          "reactionIds": [
            "2076066",
            "2076065"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076680",
            "2076681",
            "2076687",
            "2076686",
            "2076688",
            "2076669"
          ]
        },
        {
          "id": "2076681",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 87.41472023380945,
          "y": 222.25916734336886,
          "size": 59.963282977548204,
          "labelX": 75.00030041013008,
          "labelY": 224.7530748315623,
          "reactionIds": [
            "2076065"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ]
        },
        {
          "id": "2076686",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 87.41472023380945,
          "y": 177.28670511020772,
          "size": 59.963282977548204,
          "labelX": 72.76196152852371,
          "labelY": 179.78053940103422,
          "reactionIds": [
            "2076066"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ]
        },
        {
          "id": "2076687",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 87.41472023380945,
          "y": 144.3068994725562,
          "size": 59.963282977548204,
          "labelX": 71.02107195247817,
          "labelY": 147.54690772172393,
          "reactionIds": [
            "2076066"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ]
        },
        {
          "id": "2076709",
          "biggId": "h_c",
          "name": "H+",
          "x": 216.39723192022166,
          "y": 159.7953489068231,
          "size": 59.963282977548204,
          "labelX": 206.9672151404395,
          "labelY": 158.0613032845842,
          "reactionIds": [
            "2076069"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ]
        },
        {
          "id": "2076708",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 228.3898885157313,
          "y": 192.77515454447462,
          "size": 59.963282977548204,
          "labelX": 232.8871347390474,
          "labelY": 194.27423661891333,
          "reactionIds": [
            "2076069"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ]
        },
        {
          "id": "2076702",
          "biggId": "malACP_c",
          "name": "Malonyl-[acyl-carrier protein]",
          "x": 222.39356021797647,
          "y": 153.7990206090683,
          "size": 14.990820744387051,
          "labelX": 199.88569927947222,
          "labelY": 152.504232385692,
          "reactionIds": [
            "2076128",
            "2076203",
            "2076068",
            "2076069",
            "2076127",
            "2076190",
            "2076122",
            "2076118",
            "2076100",
            "2076073"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2076701",
            "2077093",
            "2077092",
            "2077056",
            "2077048",
            "2077648",
            "2076700",
            "2077032",
            "2076709",
            "2077101",
            "2076912",
            "2077545",
            "2077058",
            "2076734",
            "2076710",
            "2076737",
            "2076729",
            "2077646",
            "2076905",
            "2077059",
            "2077085",
            "2076652",
            "2075382",
            "2076908",
            "2077547",
            "2076673",
            "2077644",
            "2077089",
            "2077029",
            "2077549",
            "2076706",
            "2076708",
            "2077028",
            "2077090",
            "2076695",
            "2076736",
            "2077645",
            "2077098",
            "2077541",
            "2077031",
            "2077146",
            "2077057",
            "2077100",
            "2077117",
            "2076735",
            "2076906",
            "2077097"
          ]
        },
        {
          "id": "2076701",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 228.3898885157313,
          "y": 114.82288667366196,
          "size": 59.963282977548204,
          "labelX": 232.8871347390474,
          "labelY": 116.32196874810066,
          "reactionIds": [
            "2076068"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ]
        },
        {
          "id": "2076700",
          "biggId": "coa_c",
          "name": "Coenzyme A",
          "x": 229.516652183352,
          "y": 147.03917057701315,
          "size": 59.963282977548204,
          "labelX": 234.01389840666812,
          "labelY": 148.53825265145187,
          "reactionIds": [
            "2076068"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ]
        },
        {
          "id": "2076669",
          "biggId": "but2eACP_c",
          "name": "But-2-enoyl-[acyl-carrier protein]",
          "x": 93.41104853156426,
          "y": 228.2554956411237,
          "size": 14.990820744387051,
          "labelX": 97.90829475488039,
          "labelY": 229.7545777155624,
          "reactionIds": [
            "2076098",
            "2076065"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076680",
            "2076681",
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ]
        },
        {
          "id": "2076905",
          "biggId": "coa_c",
          "name": "Coenzyme A",
          "x": 87.97282702617566,
          "y": 129.0079207413476,
          "size": 59.963282977548204,
          "labelX": 75.53249533460806,
          "labelY": 130.76363278419365,
          "reactionIds": [
            "2076100"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ]
        },
        {
          "id": "2076906",
          "biggId": "h_c",
          "name": "H+",
          "x": 87.97282702617566,
          "y": 96.0281151036961,
          "size": 59.963282977548204,
          "labelX": 78.35542498708868,
          "labelY": 97.5271971781348,
          "reactionIds": [
            "2076100"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ]
        },
        {
          "id": "2076908",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 99.96548362168531,
          "y": 129.0079207413476,
          "size": 59.963282977548204,
          "labelX": 104.46272984500142,
          "labelY": 130.5070028157863,
          "reactionIds": [
            "2076100"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ]
        },
        {
          "id": "2077648",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 765.2379991571148,
          "y": 191.6880142624499,
          "size": 59.963282977548204,
          "labelX": 750.7834955201209,
          "labelY": 193.51384938280142,
          "reactionIds": [
            "2076203"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ]
        },
        {
          "id": "2077645",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 772.2614720907859,
          "y": 181.9671788987684,
          "size": 59.963282977548204,
          "labelX": 776.758718314102,
          "labelY": 183.46626097320708,
          "reactionIds": [
            "2076203"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ]
        },
        {
          "id": "2077644",
          "biggId": "3ooctdACP_c",
          "name": "3-Oxooctadecanoyl-[acyl-carrier protein]",
          "x": 772.956647213966,
          "y": 205.04329331088812,
          "size": 14.990820744387051,
          "labelX": 777.4538934372822,
          "labelY": 206.54237538532684,
          "reactionIds": [
            "2076203",
            "2076206"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077645",
            "2076702",
            "2077669",
            "2077146",
            "2077644",
            "2077670",
            "2077667",
            "2077646",
            "2077648",
            "2077668"
          ]
        },
        {
          "id": "2077646",
          "biggId": "h_c",
          "name": "H+",
          "x": 749.7769644375273,
          "y": 157.75133264248063,
          "size": 59.963282977548204,
          "labelX": 754.2742106608434,
          "labelY": 159.25041471691932,
          "reactionIds": [
            "2076203"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ]
        },
        {
          "id": "2077549",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 14.743926025779544,
          "y": 110.69679130839143,
          "size": 59.963282977548204,
          "labelX": 2.172388054015093,
          "labelY": 113.7475843640814,
          "reactionIds": [
            "2076190"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ]
        },
        {
          "id": "2077547",
          "biggId": "h_c",
          "name": "H+",
          "x": 14.743926025779544,
          "y": 77.71698567073992,
          "size": 59.963282977548204,
          "labelX": 4.344776108030186,
          "labelY": 80.14706505498262,
          "reactionIds": [
            "2076190"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ]
        },
        {
          "id": "2077545",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 26.736582621289184,
          "y": 110.69679130839143,
          "size": 59.963282977548204,
          "labelX": 31.2338288446053,
          "labelY": 112.19587338283013,
          "reactionIds": [
            "2076190"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ]
        },
        {
          "id": "2077541",
          "biggId": "acACP_c",
          "name": "Acetyl-ACP",
          "x": 20.7402451738635,
          "y": 65.82417028370364,
          "size": 14.990820744387051,
          "labelX": 1.6515430400537694,
          "labelY": 69.80596064919762,
          "reactionIds": [
            "2076190",
            "2076191"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2075382",
            "2077553",
            "2077554",
            "2077547",
            "2077545",
            "2077549"
          ]
        },
        {
          "id": "2077661",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 685.1034305288875,
          "y": 393.9478802698211,
          "size": 59.963282977548204,
          "labelX": 670.302849741115,
          "labelY": 395.1199165088793,
          "reactionIds": [
            "2076205"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ]
        },
        {
          "id": "2077660",
          "biggId": "ppi_c",
          "name": "Diphosphate",
          "x": 681.80574275459,
          "y": 349.0377089959054,
          "size": 59.963282977548204,
          "labelX": 668.9676565712011,
          "labelY": 350.20967203759676,
          "reactionIds": [
            "2076205"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ]
        },
        {
          "id": "2077497",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 199.94912479790491,
          "y": 295.02301924466326,
          "size": 59.963282977548204,
          "labelX": 184.58453999870326,
          "labelY": 297.7634554646296,
          "reactionIds": [
            "2076184"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ]
        },
        {
          "id": "2077498",
          "biggId": "h_c",
          "name": "H+",
          "x": 197.97641916083654,
          "y": 299.98850902414074,
          "size": 59.963282977548204,
          "labelX": 187.5772875424289,
          "labelY": 303.3495857181874,
          "reactionIds": [
            "2076184"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ]
        },
        {
          "id": "2077499",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 199.94912479790491,
          "y": 328.0028248823148,
          "size": 59.963282977548204,
          "labelX": 184.89484193640172,
          "labelY": 327.95019597550225,
          "reactionIds": [
            "2076184"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ]
        },
        {
          "id": "2076898",
          "biggId": "h_c",
          "name": "H+",
          "x": 232.22462537109112,
          "y": 300.2988658598644,
          "size": 59.963282977548204,
          "labelX": 236.56102038060942,
          "labelY": 301.43423021809775,
          "reactionIds": [
            "2076099"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ]
        },
        {
          "id": "2077668",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 778.9529755117209,
          "y": 211.03962160864293,
          "size": 59.963282977548204,
          "labelX": 783.450221735037,
          "labelY": 212.53870368308165,
          "reactionIds": [
            "2076206"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ]
        },
        {
          "id": "2077586",
          "biggId": "amp_c",
          "name": "AMP",
          "x": 396.11429986116417,
          "y": 350.1530419596972,
          "size": 59.963282977548204,
          "labelX": 384.52031272456225,
          "labelY": 349.68172411412536,
          "reactionIds": [
            "2076195"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ]
        },
        {
          "id": "2077587",
          "biggId": "dca_c",
          "name": "Decanoate (n-C10:0)",
          "x": 430.6808048214528,
          "y": 405.00173212136013,
          "size": 14.990820744387051,
          "labelX": 435.1780510447689,
          "labelY": 406.50081419579885,
          "reactionIds": [
            "2076195",
            "2076197"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077584",
            "2077586",
            "2077598",
            "2077048",
            "2077599",
            "2077583",
            "2077587",
            "2077601",
            "2077585"
          ]
        },
        {
          "id": "2077710",
          "biggId": "h_c",
          "name": "H+",
          "x": 670.5239057892012,
          "y": 291.1276121603497,
          "size": 59.963282977548204,
          "labelX": 661.0925714568145,
          "labelY": 290.5784123163793,
          "reactionIds": [
            "2076212"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ]
        },
        {
          "id": "2077722",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 474.08916315497595,
          "y": 328.8911447051548,
          "size": 59.963282977548204,
          "labelX": 461.380453317611,
          "labelY": 330.3902267795935,
          "reactionIds": [
            "2076214"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ]
        },
        {
          "id": "2077723",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 474.9084612828662,
          "y": 295.092040939613,
          "size": 59.963282977548204,
          "labelX": 459.332098201835,
          "labelY": 295.3621392235329,
          "reactionIds": [
            "2076214"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ]
        },
        {
          "id": "2077724",
          "biggId": "h_c",
          "name": "H+",
          "x": 473.15747047018624,
          "y": 301.2369598922072,
          "size": 59.963282977548204,
          "labelX": 463.72609953911615,
          "labelY": 302.32642950138427,
          "reactionIds": [
            "2076214"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ]
        },
        {
          "id": "2077050",
          "biggId": "h_c",
          "name": "H+",
          "x": 412.2055698197657,
          "y": 299.9262531372082,
          "size": 59.963282977548204,
          "labelX": 414.0756527484179,
          "labelY": 303.39566193429056,
          "reactionIds": [
            "2076121"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ]
        },
        {
          "id": "2077051",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 408.7637930286942,
          "y": 323.38271535225977,
          "size": 59.963282977548204,
          "labelX": 410.96227594401483,
          "labelY": 322.5831073160699,
          "reactionIds": [
            "2076121"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ]
        },
        {
          "id": "2077056",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 497.02516159873244,
          "y": 173.35240949423167,
          "size": 59.963282977548204,
          "labelX": 500.08137125957415,
          "labelY": 171.70085730450702,
          "reactionIds": [
            "2076122"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ]
        },
        {
          "id": "2077057",
          "biggId": "h_c",
          "name": "H+",
          "x": 463.1167266875867,
          "y": 164.31308241796705,
          "size": 59.963282977548204,
          "labelX": 455.3109594796696,
          "labelY": 164.52359804521734,
          "reactionIds": [
            "2076122"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ]
        },
        {
          "id": "2077058",
          "biggId": "3oddecACP_c",
          "name": "3-Oxododecanoyl-[acyl-carrier protein]",
          "x": 494.3114363115296,
          "y": 200.78945762868332,
          "size": 14.990820744387051,
          "labelX": 499.4140979566075,
          "labelY": 194.7931293309285,
          "reactionIds": [
            "2076124",
            "2076122"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077071",
            "2077057",
            "2077070",
            "2077073",
            "2077072"
          ]
        },
        {
          "id": "2077059",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 487.6791659795487,
          "y": 183.1870219239405,
          "size": 59.963282977548204,
          "labelX": 475.838979499325,
          "labelY": 185.25953217079876,
          "reactionIds": [
            "2076122"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ]
        },
        {
          "id": "2077119",
          "biggId": "h_c",
          "name": "H+",
          "x": 598.0881405195012,
          "y": 301.7793957082551,
          "size": 59.963282977548204,
          "labelX": 601.5182423305497,
          "labelY": 303.70046060296426,
          "reactionIds": [
            "2076131"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ]
        },
        {
          "id": "2076757",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 310.2595422937942,
          "y": 204.10585996461725,
          "size": 59.963282977548204,
          "labelX": 314.7567885171103,
          "labelY": 205.60494203905597,
          "reactionIds": [
            "2076076"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ]
        },
        {
          "id": "2077113",
          "biggId": "tmrs2eACP_c",
          "name": "Trans-Tetradec-2-enoyl-[acyl-carrier protein]",
          "x": 588.1076063431442,
          "y": 289.6380020631723,
          "size": 14.990820744387051,
          "labelX": 592.6048525664603,
          "labelY": 291.13708413761094,
          "reactionIds": [
            "2076131",
            "2076130",
            "2076213"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077716",
            "2077715",
            "2077108",
            "2077717",
            "2077113",
            "2077117",
            "2077112"
          ]
        },
        {
          "id": "2077112",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 594.1038614435321,
          "y": 283.64174696278434,
          "size": 59.963282977548204,
          "labelX": 598.6011076668482,
          "labelY": 285.14082903722306,
          "reactionIds": [
            "2076130"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ]
        },
        {
          "id": "2076758",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 310.2595422937942,
          "y": 237.0856656022688,
          "size": 59.963282977548204,
          "labelX": 314.7567885171103,
          "labelY": 238.58474767670748,
          "reactionIds": [
            "2076076"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ]
        },
        {
          "id": "2076759",
          "biggId": "h_c",
          "name": "H+",
          "x": 298.26688569828457,
          "y": 204.10585996461725,
          "size": 59.963282977548204,
          "labelX": 289.7298035975101,
          "labelY": 207.46700985603087,
          "reactionIds": [
            "2076076"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ]
        },
        {
          "id": "2077117",
          "biggId": "myrsACP_c",
          "name": "Myristoyl-ACP (n-C14:0ACP)",
          "x": 588.1075331457773,
          "y": 334.61053749370035,
          "size": 14.990820744387051,
          "labelX": 567.7549320774298,
          "labelY": 338.28694844442094,
          "reactionIds": [
            "2076201",
            "2076127",
            "2076202",
            "2076131",
            "2076213"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077637",
            "2077715",
            "2077636",
            "2077118",
            "2077629",
            "2077639",
            "2077119",
            "2077716",
            "2077089",
            "2077631",
            "2077090",
            "2077630",
            "2077120",
            "2077717",
            "2077628",
            "2077113",
            "2077632",
            "2077117"
          ]
        },
        {
          "id": "2077616",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 488.6425198359898,
          "y": 396.78302007230513,
          "size": 59.963282977548204,
          "labelX": 475.4597106531102,
          "labelY": 400.5739849022492,
          "reactionIds": [
            "2076199"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ]
        },
        {
          "id": "2077617",
          "biggId": "amp_c",
          "name": "AMP",
          "x": 484.38620274587754,
          "y": 353.65359434072076,
          "size": 59.963282977548204,
          "labelX": 469.89378287282125,
          "labelY": 354.4978527707293,
          "reactionIds": [
            "2076199"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ]
        },
        {
          "id": "2077614",
          "biggId": "ddca_c",
          "name": "Dodecanoate (n-C12:0)",
          "x": 520.013154559361,
          "y": 415.21462944331034,
          "size": 14.990820744387051,
          "labelX": 524.5104007826772,
          "labelY": 416.71371151774906,
          "reactionIds": [
            "2076200",
            "2076199"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077623",
            "2077085",
            "2077613",
            "2077617",
            "2077622",
            "2077621",
            "2077616",
            "2077614",
            "2077615"
          ]
        },
        {
          "id": "2077615",
          "biggId": "ppi_c",
          "name": "Diphosphate",
          "x": 485.2469671821257,
          "y": 347.10543109378654,
          "size": 59.963282977548204,
          "labelX": 473.0463934658913,
          "labelY": 347.29486587936503,
          "reactionIds": [
            "2076199"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ]
        },
        {
          "id": "2077599",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 438.6818626043017,
          "y": 387.4137956014282,
          "size": 59.963282977548204,
          "labelX": 443.1791088276178,
          "labelY": 388.9128776758669,
          "reactionIds": [
            "2076197"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ]
        },
        {
          "id": "2077598",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 436.93218934422623,
          "y": 357.277195286893,
          "size": 59.963282977548204,
          "labelX": 439.8984760398118,
          "labelY": 357.24535443228456,
          "reactionIds": [
            "2076197"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ]
        },
        {
          "id": "2077594",
          "biggId": "h_c",
          "name": "H+",
          "x": 383.80601621951297,
          "y": 302.55337983318867,
          "size": 59.963282977548204,
          "labelX": 376.809555698902,
          "labelY": 307.33638857694467,
          "reactionIds": [
            "2076196"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ]
        },
        {
          "id": "2077577",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 339.1972063369295,
          "y": 351.8561358344386,
          "size": 59.963282977548204,
          "labelX": 343.6944525602457,
          "labelY": 353.3552179088773,
          "reactionIds": [
            "2076194"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ]
        },
        {
          "id": "2077576",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 342.1586620062986,
          "y": 384.8359414720901,
          "size": 59.963282977548204,
          "labelX": 346.65590822961474,
          "labelY": 386.3350235465288,
          "reactionIds": [
            "2076194"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ]
        },
        {
          "id": "2077572",
          "biggId": "amp_c",
          "name": "AMP",
          "x": 293.64150748418206,
          "y": 361.3985105724367,
          "size": 59.963282977548204,
          "labelX": 278.7248356724809,
          "labelY": 363.2266148111626,
          "reactionIds": [
            "2076193"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ]
        },
        {
          "id": "2077571",
          "biggId": "octa_c",
          "name": "Octanoate (n-C8:0)",
          "x": 335.83506828106255,
          "y": 412.1700341995142,
          "size": 14.990820744387051,
          "labelX": 341.64851295757785,
          "labelY": 413.6691162739529,
          "reactionIds": [
            "2076194",
            "2076193"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077577",
            "2077568",
            "2077576",
            "2077569",
            "2076912",
            "2077570",
            "2077572",
            "2077578",
            "2077571"
          ]
        },
        {
          "id": "2077570",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 305.9632228426624,
          "y": 399.64318322025196,
          "size": 59.963282977548204,
          "labelX": 294.3370654633009,
          "labelY": 403.11654467514774,
          "reactionIds": [
            "2076193"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ]
        },
        {
          "id": "2077578",
          "biggId": "h_c",
          "name": "H+",
          "x": 344.31512963300946,
          "y": 392.40411002699807,
          "size": 59.963282977548204,
          "labelX": 347.1671552388392,
          "labelY": 394.5612364300112,
          "reactionIds": [
            "2076194"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ]
        },
        {
          "id": "2077593",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 385.9341930639108,
          "y": 294.0151997719105,
          "size": 59.963282977548204,
          "labelX": 372.0414792179969,
          "labelY": 296.499445207671,
          "reactionIds": [
            "2076196"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ]
        },
        {
          "id": "2077503",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 287.40490882952565,
          "y": 295.29221177383414,
          "size": 59.963282977548204,
          "labelX": 272.6609828037461,
          "labelY": 295.23958286702157,
          "reactionIds": [
            "2076185"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ]
        },
        {
          "id": "2077506",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 286.47391151972164,
          "y": 327.961660575762,
          "size": 59.963282977548204,
          "labelX": 273.28169647519337,
          "labelY": 328.84010217612035,
          "reactionIds": [
            "2076185"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ]
        },
        {
          "id": "2077504",
          "biggId": "h_c",
          "name": "H+",
          "x": 285.4322031924573,
          "y": 301.49905569883924,
          "size": 59.963282977548204,
          "labelX": 276.274444018919,
          "labelY": 302.9981377732779,
          "reactionIds": [
            "2076185"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ]
        },
        {
          "id": "2077118",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 594.1038614435321,
          "y": 295.63440355829397,
          "size": 59.963282977548204,
          "labelX": 598.6011076668482,
          "labelY": 297.1334856327327,
          "reactionIds": [
            "2076131"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ]
        },
        {
          "id": "2077629",
          "biggId": "ppi_c",
          "name": "Diphosphate",
          "x": 579.0506033451658,
          "y": 344.3702352140719,
          "size": 59.963282977548204,
          "labelX": 567.5127951876718,
          "labelY": 344.8875942034339,
          "reactionIds": [
            "2076201"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ]
        },
        {
          "id": "2077628",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 582.3230380278773,
          "y": 381.6041986195117,
          "size": 59.963282977548204,
          "labelX": 567.840060615153,
          "labelY": 384.08500377902715,
          "reactionIds": [
            "2076201"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ]
        },
        {
          "id": "2077623",
          "biggId": "h_c",
          "name": "H+",
          "x": 532.5574997093162,
          "y": 389.5800331809408,
          "size": 59.963282977548204,
          "labelX": 537.0547459326323,
          "labelY": 391.0791152553795,
          "reactionIds": [
            "2076200"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ]
        },
        {
          "id": "2077622",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 530.0597127606762,
          "y": 396.1281232305081,
          "size": 59.963282977548204,
          "labelX": 534.5569589839923,
          "labelY": 397.6272053049468,
          "reactionIds": [
            "2076200"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ]
        },
        {
          "id": "2077621",
          "biggId": "h2o_c",
          "name": "H2O",
          "x": 524.6574542928113,
          "y": 358.4009559667887,
          "size": 59.963282977548204,
          "labelX": 529.1547005161274,
          "labelY": 359.9000380412274,
          "reactionIds": [
            "2076200"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ]
        },
        {
          "id": "2076653",
          "biggId": "adp_c",
          "name": "ADP",
          "x": 230.79827018242204,
          "y": 94.98822976638219,
          "size": 59.963282977548204,
          "labelX": 234.164800080304,
          "labelY": 97.37109684896411,
          "reactionIds": [
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ]
        },
        {
          "id": "2076652",
          "biggId": "malcoa_c",
          "name": "Malonyl-CoA",
          "x": 222.39356021797647,
          "y": 108.82655837590713,
          "size": 14.990820744387051,
          "labelX": 227.58189938102956,
          "labelY": 106.56073388302383,
          "reactionIds": [
            "2076068",
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ]
        },
        {
          "id": "2076655",
          "biggId": "hco3_c",
          "name": "Bicarbonate",
          "x": 211.3202102437973,
          "y": 68.68267654658226,
          "size": 59.963282977548204,
          "labelX": 198.60209454478365,
          "labelY": 64.67599907633685,
          "reactionIds": [
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ]
        },
        {
          "id": "2076654",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 233.7688841659691,
          "y": 64.70030782147931,
          "size": 59.963282977548204,
          "labelX": 237.1354506625345,
          "labelY": 61.497044650503405,
          "reactionIds": [
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ]
        },
        {
          "id": "2076657",
          "biggId": "pi_c",
          "name": "Phosphate",
          "x": 204.97821534616148,
          "y": 95.47903280720386,
          "size": 59.963282977548204,
          "labelX": 195.31041691995287,
          "labelY": 91.65512916214759,
          "reactionIds": [
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ]
        },
        {
          "id": "2076656",
          "biggId": "h_c",
          "name": "H+",
          "x": 216.97084900007926,
          "y": 95.4555751698496,
          "size": 59.963282977548204,
          "labelX": 211.28656107748714,
          "labelY": 100.34040145098568,
          "reactionIds": [
            "2076061"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ]
        },
        {
          "id": "2076710",
          "biggId": "co2_c",
          "name": "CO2",
          "x": 216.39723192022166,
          "y": 192.77515454447462,
          "size": 59.963282977548204,
          "labelX": 204.8612902955841,
          "labelY": 194.27423661891333,
          "reactionIds": [
            "2076069"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ]
        },
        {
          "id": "2076714",
          "biggId": "3hhexACP_c",
          "name": "(R)-3-Hydroxyhexanoyl-[acyl-carrier protein]",
          "x": 222.39356021797647,
          "y": 243.7439450753906,
          "size": 14.990820744387051,
          "labelX": 226.8908064412926,
          "labelY": 245.2430271498293,
          "reactionIds": [
            "2076071",
            "2076070"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076715",
            "2076721",
            "2076722",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ]
        },
        {
          "id": "2076715",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 228.3898885157313,
          "y": 237.74761677763578,
          "size": 59.963282977548204,
          "labelX": 232.8871347390474,
          "labelY": 239.24669885207447,
          "reactionIds": [
            "2076070"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ]
        },
        {
          "id": "2076716",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 228.3898885157313,
          "y": 204.76781113998425,
          "size": 59.963282977548204,
          "labelX": 232.8871347390474,
          "labelY": 206.26689321442296,
          "reactionIds": [
            "2076070"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ]
        },
        {
          "id": "2076717",
          "biggId": "h_c",
          "name": "H+",
          "x": 216.39723192022166,
          "y": 204.76781113998425,
          "size": 59.963282977548204,
          "labelX": 205.97985585811023,
          "labelY": 206.76404973051612,
          "reactionIds": [
            "2076070"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ]
        },
        {
          "id": "2076912",
          "biggId": "ocACP_c",
          "name": "Octanoyl-ACP (n-C8:0ACP)",
          "x": 304.57357083176305,
          "y": 333.02699156371284,
          "size": 14.990820744387051,
          "labelX": 286.763626697975,
          "labelY": 338.42954282104546,
          "reactionIds": [
            "2076193",
            "2076185",
            "2076118",
            "2076101",
            "2076194"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077568",
            "2076702",
            "2076913",
            "2076915",
            "2077577",
            "2077032",
            "2077572",
            "2077570",
            "2076912",
            "2077503",
            "2077504",
            "2077506",
            "2077576",
            "2077029",
            "2077571",
            "2077028",
            "2077031",
            "2077569",
            "2076765",
            "2077578",
            "2076914"
          ]
        },
        {
          "id": "2076913",
          "biggId": "nadh_c",
          "name": "Nicotinamide adenine dinucleotide - reduced",
          "x": 310.2595422937942,
          "y": 294.0507844309396,
          "size": 59.963282977548204,
          "labelX": 314.7567885171103,
          "labelY": 295.5498665053783,
          "reactionIds": [
            "2076101"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ]
        },
        {
          "id": "2076914",
          "biggId": "nad_c",
          "name": "Nicotinamide adenine dinucleotide",
          "x": 310.2595422937942,
          "y": 327.0305900685911,
          "size": 59.963282977548204,
          "labelX": 314.7567885171103,
          "labelY": 328.5296721430298,
          "reactionIds": [
            "2076101"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ]
        },
        {
          "id": "2076915",
          "biggId": "h_c",
          "name": "H+",
          "x": 314.7149928206013,
          "y": 299.6369146844974,
          "size": 59.963282977548204,
          "labelX": 318.90191880687723,
          "labelY": 300.2049994491321,
          "reactionIds": [
            "2076101"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ]
        },
        {
          "id": "2077659",
          "biggId": "atp_c",
          "name": "ATP",
          "x": 683.0315058609646,
          "y": 385.4437369841588,
          "size": 59.963282977548204,
          "labelX": 668.88508994132,
          "labelY": 386.6157000258502,
          "reactionIds": [
            "2076205"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ]
        },
        {
          "id": "2077717",
          "biggId": "h_c",
          "name": "H+",
          "x": 568.5923099549483,
          "y": 293.1764359772563,
          "size": 59.963282977548204,
          "labelX": 557.5223061694143,
          "labelY": 293.44653426117617,
          "reactionIds": [
            "2076213"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ]
        },
        {
          "id": "2077716",
          "biggId": "nadp_c",
          "name": "Nicotinamide adenine dinucleotide phosphate",
          "x": 567.4757573200123,
          "y": 329.0238216612072,
          "size": 59.963282977548204,
          "labelX": 553.5380270934451,
          "labelY": 331.34227506090303,
          "reactionIds": [
            "2076213"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ]
        },
        {
          "id": "2077715",
          "biggId": "nadph_c",
          "name": "Nicotinamide adenine dinucleotide phosphate - reduced",
          "x": 566.6563859947552,
          "y": 298.50205680196024,
          "size": 59.963282977548204,
          "labelX": 552.3090433029263,
          "labelY": 299.5915264111373,
          "reactionIds": [
            "2076213"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ]
        },
        {
          "id": "2077029",
          "biggId": "ACP_c",
          "name": "Acyl carrier protein",
          "x": 402.2783844803226,
          "y": 173.49817997752606,
          "size": 59.963282977548204,
          "labelX": 405.9552712139282,
          "labelY": 171.84662778780142,
          "reactionIds": [
            "2076118"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ]
        },
        {
          "id": "2077028",
          "biggId": "3odecACP_c",
          "name": "3-Oxodecanoyl-[acyl-carrier protein]",
          "x": 401.78230136961747,
          "y": 198.4023835931854,
          "size": 14.990820744387051,
          "labelX": 404.98688209319783,
          "labelY": 192.40605529543058,
          "reactionIds": [
            "2076118",
            "2076119"
          ],
          "metaboliteIds": [],
          "relatedMetaboliteIds": [
            "2077037",
            "2077039",
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077036",
            "2077028",
            "2077038"
          ]
        }
      ]
    },
    {
      "name": "reactionSegmentCoordinates",
      "values": [
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 230.52768857634612,
          "x1": 772.956647213966,
          "y1": 235.32475121454996,
          "x2": 772.956647213966,
          "y2": 242.1455746532461,
          "x3": 772.956647213966,
          "y3": 247.15934601538015,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 224.53136027859128,
          "x1": 772.956647213966,
          "y1": 219.13466481061195,
          "x2": 776.1047195702873,
          "y2": 216.28640886917842,
          "x3": 777.5764860482099,
          "y3": 213.39481768967332,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 224.53136027859128,
          "x1": 772.956647213966,
          "y1": 219.13466481061195,
          "x2": 769.8085748576448,
          "y2": 216.28640886917842,
          "x3": 768.3368083797222,
          "y3": 213.39481768967332,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 230.52768857634612,
          "x1": 772.956647213966,
          "y1": 235.92438404432545,
          "x2": 776.1047195702873,
          "y2": 238.77263998575899,
          "x3": 777.5764860482099,
          "y3": 241.66423116526397,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 224.53136027859128,
          "x1": 772.956647213966,
          "y1": 227.5295244274687,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 230.52768857634612,
          "x1": 772.956647213966,
          "y1": 227.5295244274687,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 224.53136027859128,
          "x1": 772.956647213966,
          "y1": 219.73429764038744,
          "x2": 772.956647213966,
          "y2": 212.91347420169132,
          "x3": 772.956647213966,
          "y3": 207.8997028395574,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "curve",
          "x0": 482.52959725058685,
          "y0": 170.54855863846046,
          "x1": 486.955172843956,
          "y1": 173.63702146671113,
          "x2": 485.0065450897944,
          "y2": 177.8486292777529,
          "x3": 486.6572303683089,
          "y3": 180.54272646988332,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "curve",
          "x0": 482.52959725058685,
          "y0": 170.54855863846046,
          "x1": 486.46344222247075,
          "y1": 173.29385893023874,
          "x2": 494.34744324476907,
          "y2": 178.72444944857816,
          "x3": 494.2045508177663,
          "y3": 196.35488533062457,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "curve",
          "x0": 482.52959725058685,
          "y0": 170.54855863846046,
          "x1": 486.955172843956,
          "y1": 173.63702146671113,
          "x2": 491.09249661249163,
          "y2": 172.68545775215537,
          "x3": 494.30602821008625,
          "y3": 173.13335370680159,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "curve",
          "x0": 477.6122910357322,
          "y0": 167.11693327373797,
          "x1": 426.9936139185115,
          "y1": 167.84607911698922,
          "x2": 462.77468683884547,
          "y2": 331.05126932401305,
          "x3": 403.9899494394967,
          "y3": 329.99935496821564,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "curve",
          "x0": 477.6122910357322,
          "y0": 167.11693327373797,
          "x1": 471.27794770529584,
          "y1": 162.50142697688713,
          "x2": 469.04939167382776,
          "y2": 161.54422295437533,
          "x3": 465.57297445453963,
          "y3": 163.31500133331133,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "curve",
          "x0": 477.6122910357322,
          "y0": 167.11693327373797,
          "x1": 460.7118985015221,
          "y1": 151.78812724070477,
          "x2": 423.86049237142214,
          "y2": 148.08194026609783,
          "x3": 227.96799596251728,
          "y3": 153.6420696825917,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "line",
          "x0": 477.6122910357322,
          "y0": 167.11693327373797,
          "x1": 480.0709441431598,
          "y1": 168.83274595609964,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C12:0)",
          "type": "line",
          "x0": 482.52959725058685,
          "y0": 170.54855863846046,
          "x1": 480.0709441431598,
          "y1": 168.83274595609964,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)",
          "type": "line",
          "x0": 304.2632139960394,
          "y0": 268.5663891654816,
          "x1": 304.2632139960394,
          "y1": 265.5682250166042,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 268.5663891654816,
          "x1": 304.2632139960394,
          "y1": 273.96308463346094,
          "x2": 307.41128635236066,
          "y2": 276.8113405748945,
          "x3": 308.88305283028325,
          "y3": 279.70293175439946,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 262.57006086772674,
          "x1": 304.2632139960394,
          "y1": 257.7729982295229,
          "x2": 304.2632139960394,
          "y2": 250.9521747908268,
          "x3": 304.2632139960394,
          "y3": 245.93840342869285,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 268.5663891654816,
          "x1": 304.2632139960394,
          "y1": 273.36345180368545,
          "x2": 304.2632139960394,
          "y2": 280.18427524238155,
          "x3": 304.2632139960394,
          "y3": 285.19804660451564,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C8:0)",
          "type": "line",
          "x0": 304.2632139960394,
          "y0": 262.57006086772674,
          "x1": 304.2632139960394,
          "y1": 265.5682250166042,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 262.8629127940496,
          "x1": 401.78230136961747,
          "y1": 258.06585015584574,
          "x2": 401.78230136961747,
          "y2": 251.2450267171496,
          "x3": 401.7823013696176,
          "y3": 246.23125535501566,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 268.8592410918044,
          "x1": 401.78230136961747,
          "y1": 274.2559365597837,
          "x2": 404.93037372593886,
          "y2": 277.10419250121726,
          "x3": 406.40214020386145,
          "y3": 279.99578368072235,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 268.8592410918044,
          "x1": 401.78230136961747,
          "y1": 273.65630373000823,
          "x2": 401.78230136961747,
          "y2": 280.4771271687044,
          "x3": 401.7823013696176,
          "y3": 285.4908985308383,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)",
          "type": "line",
          "x0": 401.78230136961747,
          "y0": 268.8592410918044,
          "x1": 401.78230136961747,
          "y1": 265.86107694292696,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C10:0)",
          "type": "line",
          "x0": 401.78230136961747,
          "y0": 262.8629127940496,
          "x1": 401.78230136961747,
          "y1": 265.86107694292696,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 263.23201204309373,
          "x1": 222.39356021797647,
          "y1": 266.23017619197117,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 269.2283403408486,
          "x1": 222.39356021797647,
          "y1": 266.23017619197117,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 263.23201204309373,
          "x1": 222.39356021797647,
          "y1": 258.4349494048899,
          "x2": 222.39356021797647,
          "y2": 251.6141259661938,
          "x3": 222.39356021797653,
          "y3": 246.6003546040597,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 269.2283403408486,
          "x1": 222.39356021797647,
          "y1": 274.02540297905244,
          "x2": 222.39356021797647,
          "y2": 280.84622641774854,
          "x3": 222.39356021797653,
          "y3": 285.85999777988263,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 269.2283403408486,
          "x1": 222.39356021797647,
          "y1": 274.62503580882793,
          "x2": 225.54163257429775,
          "y2": 277.47329175026147,
          "x3": 227.0133990522203,
          "y3": 280.36488292976645,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 224.25587810768744,
          "x1": 222.39356021797647,
          "y1": 229.65257357566676,
          "x2": 225.54163257429775,
          "y2": 232.5008295171003,
          "x3": 227.0133990522203,
          "y3": 235.39242069660529,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 218.2595498099326,
          "x1": 222.39356021797647,
          "y1": 212.86285434195327,
          "x2": 225.54163257429775,
          "y2": 210.01459840051973,
          "x3": 227.0133990522203,
          "y3": 207.12300722101475,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 218.2595498099326,
          "x1": 222.39356021797647,
          "y1": 212.86285434195327,
          "x2": 219.2454878616552,
          "y2": 210.01459840051973,
          "x3": 217.77372138373264,
          "y3": 207.12300722101475,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 218.2595498099326,
          "x1": 222.39356021797647,
          "y1": 213.46248717172875,
          "x2": 222.39356021797647,
          "y2": 206.64166373303263,
          "x3": 222.39356021797653,
          "y3": 201.6278923708987,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 224.25587810768744,
          "x1": 222.39356021797647,
          "y1": 221.25771395881,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 224.25587810768744,
          "x1": 222.39356021797647,
          "y1": 229.05294074589128,
          "x2": 222.39356021797647,
          "y2": 235.8737641845874,
          "x3": 222.39356021797653,
          "y3": 240.88753554672147,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 218.2595498099326,
          "x1": 222.39356021797647,
          "y1": 221.25771395881,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "line",
          "x0": 289.2440482402777,
          "y0": 174.60221714264011,
          "x1": 286.87664561201615,
          "y1": 172.76254514488846,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "line",
          "x0": 284.5092429837543,
          "y0": 170.92287314713573,
          "x1": 286.87664561201615,
          "y1": 172.76254514488846,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "curve",
          "x0": 289.2440482402777,
          "y0": 174.60221714264011,
          "x1": 293.50537297114886,
          "y1": 177.91362673859408,
          "x2": 297.6860610656371,
          "y2": 177.17554237678388,
          "x3": 300.87238698393634,
          "y3": 177.7876888113103,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "curve",
          "x0": 284.5092429837543,
          "y0": 170.92287314713573,
          "x1": 274.51316410355906,
          "y1": 162.26780741028125,
          "x2": 258.6825090178478,
          "y2": 153.40251047248458,
          "x3": 226.27354460640967,
          "y3": 153.79206305044653,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "curve",
          "x0": 289.2440482402777,
          "y0": 174.60221714264011,
          "x1": 293.50537297114886,
          "y1": 177.91362673859408,
          "x2": 293.82274987035765,
          "y2": 182.1470878961336,
          "x3": 295.20292546317955,
          "y3": 185.08349921744164,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "curve",
          "x0": 289.2440482402777,
          "y0": 174.60221714264011,
          "x1": 293.03189244549674,
          "y1": 177.54569233904365,
          "x2": 298.25633323074214,
          "y2": 182.95304937195837,
          "x3": 302.74889365552946,
          "y3": 194.4516357877693,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "curve",
          "x0": 284.5092429837543,
          "y0": 170.92287314713573,
          "x1": 234.05880598552847,
          "y1": 170.83976022164308,
          "x2": 296.9675420350826,
          "y2": 332.5574178999684,
          "x3": 225.08983382502885,
          "y3": 333.8733967469189,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C8:0)",
          "type": "curve",
          "x0": 284.5092429837543,
          "y0": 170.92287314713573,
          "x1": 279.75127411835837,
          "y1": 166.86646075071135,
          "x2": 276.0672301583947,
          "y2": 168.3495479129928,
          "x3": 272.83079471825056,
          "y3": 167.6879732814456,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "line",
          "x0": 93.41104853156426,
          "y0": 247.74356260882686,
          "x1": 93.41104853156426,
          "y1": 250.74172675770427,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 247.74356260882686,
          "x1": 93.41104853156426,
          "y1": 242.946499970623,
          "x2": 93.41104853156426,
          "y2": 236.1256765319269,
          "x3": 93.41104853156426,
          "y3": 231.11190516979295,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 247.74356260882686,
          "x1": 93.41104853156426,
          "y1": 242.3468671408475,
          "x2": 96.55912088788554,
          "y2": 239.49861119941397,
          "x3": 98.0308873658081,
          "y3": 236.60702001990887,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "line",
          "x0": 93.41104853156426,
          "y0": 253.73989090658168,
          "x1": 93.41104853156426,
          "y1": 250.74172675770427,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 253.73989090658168,
          "x1": 93.41104853156426,
          "y1": 258.53695354478555,
          "x2": 93.35395458536982,
          "y2": 260.0175898827614,
          "x3": 93.39483753901072,
          "y3": 268.85529219229556,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 247.74356260882686,
          "x1": 93.41104853156426,
          "y1": 242.3468671408475,
          "x2": 90.26297617524298,
          "y2": 239.49861119941397,
          "x3": 88.79120969732043,
          "y3": 236.60702001990887,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 253.73989090658168,
          "x1": 93.41104853156426,
          "y1": 259.13658637456103,
          "x2": 96.55912088788554,
          "y2": 261.98484231599457,
          "x3": 98.0308873658081,
          "y3": 264.87643349549967,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 225.17754605967485,
          "x1": 588.1075331457773,
          "y1": 229.9746086978787,
          "x2": 588.1075331457773,
          "y2": 236.79543213657482,
          "x3": 588.1075331457773,
          "y3": 241.80920349870888,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 219.18121776192004,
          "x1": 588.1075331457773,
          "y1": 213.78452229394068,
          "x2": 584.959460789456,
          "y2": 210.93626635250715,
          "x3": 583.4876943115335,
          "y3": 208.04467517300205,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 219.18121776192004,
          "x1": 588.1075331457773,
          "y1": 214.38415512371617,
          "x2": 588.1075331457773,
          "y2": 207.56333168502007,
          "x3": 588.1075331457773,
          "y3": 202.54956032288612,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 225.17754605967485,
          "x1": 588.1075331457773,
          "y1": 230.57424152765418,
          "x2": 591.2556055020985,
          "y2": 233.42249746908772,
          "x3": 592.7273719800211,
          "y3": 236.31408864859284,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 219.18121776192004,
          "x1": 588.1075331457773,
          "y1": 213.78452229394068,
          "x2": 591.2556055020985,
          "y2": 210.93626635250715,
          "x3": 592.7273719800211,
          "y3": 208.04467517300205,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 225.17754605967485,
          "x1": 588.1075331457773,
          "y1": 222.17938191079745,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 219.18121776192004,
          "x1": 588.1075331457773,
          "y1": 222.17938191079745,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "line",
          "x0": 573.5145507131907,
          "y0": 166.89062451002516,
          "x1": 571.0938929012615,
          "y1": 165.1216123503272,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "line",
          "x0": 568.6732350893318,
          "y0": 163.35260019062855,
          "x1": 571.0938929012615,
          "y1": 165.1216123503272,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "curve",
          "x0": 568.6732350893318,
          "y0": 163.35260019062855,
          "x1": 551.7680501871623,
          "y1": 145.96681112650816,
          "x2": 496.1825285751101,
          "y2": 147.3317404525762,
          "x3": 228.009069451625,
          "y3": 153.66637284067303,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "curve",
          "x0": 573.5145507131907,
          "y0": 166.89062451002516,
          "x1": 577.8717347746635,
          "y1": 170.0748463974816,
          "x2": 582.0288224636796,
          "y2": 169.21371724666938,
          "x3": 585.2318243996647,
          "y3": 169.73157312720298,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "curve",
          "x0": 568.6732350893318,
          "y0": 163.35260019062855,
          "x1": 511.76458702948696,
          "y1": 164.3573172170384,
          "x2": 555.1049047453981,
          "y2": 335.28176838413003,
          "x3": 496.4126766679896,
          "y3": 335.62171354179594,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "curve",
          "x0": 568.6732350893318,
          "y0": 163.35260019062855,
          "x1": 563.9775132058734,
          "y1": 158.47590878534163,
          "x2": 557.3566881134811,
          "y2": 158.4288343399887,
          "x3": 552.9659813063598,
          "y3": 160.66937064616516,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "curve",
          "x0": 573.5145507131907,
          "y0": 166.89062451002516,
          "x1": 577.3876032122774,
          "y1": 169.72104396554207,
          "x2": 586.6988132877727,
          "y2": 177.16942666371588,
          "x3": 587.7393694989703,
          "y3": 195.51557521081702,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C14:0)",
          "type": "curve",
          "x0": 573.5145507131907,
          "y0": 166.89062451002516,
          "x1": 577.8717347746635,
          "y1": 170.0748463974816,
          "x2": 578.3138969283133,
          "y2": 174.29709865172057,
          "x3": 579.780120845219,
          "y3": 177.1915042107987,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 307.54252310088793,
          "x1": 304.2632139960394,
          "y1": 302.74546046268404,
          "x2": 304.2632139960394,
          "y2": 295.92463702398794,
          "x3": 304.2632139960394,
          "y3": 290.910865661854,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 307.54252310088793,
          "x1": 304.2632139960394,
          "y1": 302.1458276329086,
          "x2": 307.01162872899954,
          "y2": 299.60785532983175,
          "x3": 311.4210137982656,
          "y3": 299.8171750879475,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "line",
          "x0": 304.2632139960394,
          "y0": 307.54252310088793,
          "x1": 304.2632139960394,
          "y1": 310.5406872497653,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "line",
          "x0": 304.2632139960394,
          "y0": 313.53885139864275,
          "x1": 304.2632139960394,
          "y1": 310.5406872497653,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 313.53885139864275,
          "x1": 304.2632139960394,
          "y1": 318.3359140368466,
          "x2": 304.57357083176305,
          "y2": 325.1568106729096,
          "x3": 304.56062813575045,
          "y3": 330.1710167291518,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 307.54252310088793,
          "x1": 304.2632139960394,
          "y1": 302.1458276329086,
          "x2": 307.41128635236066,
          "y2": 299.297571691475,
          "x3": 308.88305283028325,
          "y3": 296.4059805119701,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 313.53885139864275,
          "x1": 304.2632139960394,
          "y1": 318.9355468666221,
          "x2": 307.41128635236066,
          "y2": 321.7838028080556,
          "x3": 308.88305283028325,
          "y3": 324.6753939875606,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "curve",
          "x0": 93.96915532393048,
          "y0": 115.51618207139926,
          "x1": 93.96915532393048,
          "y1": 120.9128775393786,
          "x2": 90.8210829676092,
          "y2": 123.76113348081213,
          "x3": 89.34931648968664,
          "y3": 126.65272466031725,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "curve",
          "x0": 93.96915532393048,
          "y0": 109.51985377364444,
          "x1": 93.96915532393048,
          "y1": 104.1231583056651,
          "x2": 90.8210829676092,
          "y2": 101.27490236423156,
          "x3": 89.34931648968664,
          "y3": 98.38331118472645,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "curve",
          "x0": 93.96915532393048,
          "y0": 109.51985377364444,
          "x1": 94.27222902164598,
          "y1": 80.33525841321814,
          "x2": 93.41611397114463,
          "y2": 91.2129357228405,
          "x3": 162.2317771632547,
          "y3": 10.06814278275892,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "curve",
          "x0": 93.96915532393048,
          "y0": 115.51618207139926,
          "x1": 93.96915532393048,
          "y1": 120.31324470960311,
          "x2": 94.23784455853722,
          "y2": 122.02906418747996,
          "x3": 93.69389879886198,
          "y3": 132.55806822980833,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "line",
          "x0": 93.96915532393048,
          "y0": 109.51985377364444,
          "x1": 93.96915532393048,
          "y1": 112.51801792252185,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "curve",
          "x0": 93.96915532393048,
          "y0": 115.51618207139926,
          "x1": 93.96915532393048,
          "y1": 120.9128775393786,
          "x2": 97.11722768025176,
          "y2": 123.76113348081213,
          "x3": 98.58899415817432,
          "y3": 126.65272466031725,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "curve",
          "x0": 93.96915532393048,
          "y0": 109.51985377364444,
          "x1": 93.96915532393048,
          "y1": 104.1231583056651,
          "x2": 101.77236062400559,
          "y2": 40.75824729279876,
          "x3": 217.13589751408753,
          "y3": 148.91735502939443,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "name": "Beta-ketoacyl-ACP synthase (2)",
          "type": "line",
          "x0": 93.96915532393048,
          "y0": 115.51618207139926,
          "x1": 93.96915532393048,
          "y1": 112.51801792252185,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 320.4726130426684,
          "x1": 772.956647213966,
          "y1": 325.8693085106478,
          "x2": 776.1047195702873,
          "y2": 328.7175644520813,
          "x3": 777.5764860482099,
          "y3": 331.60915563158625,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 314.4762847449136,
          "x1": 772.956647213966,
          "y1": 309.07958927693426,
          "x2": 773.0761053167729,
          "y2": 308.5186778542573,
          "x3": 779.4939253349814,
          "y3": 306.7701638218066,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 314.4762847449136,
          "x1": 772.956647213966,
          "y1": 309.07958927693426,
          "x2": 776.1047195702873,
          "y2": 306.2313333355007,
          "x3": 777.5764860482099,
          "y3": 303.3397421559956,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 320.4726130426684,
          "x1": 772.956647213966,
          "y1": 325.2696756808723,
          "x2": 773.2834002598788,
          "y2": 328.82296866044027,
          "x3": 773.0494148338878,
          "y3": 336.17699036105864,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 314.4762847449136,
          "x1": 772.956647213966,
          "y1": 309.67922210670974,
          "x2": 773.283327062512,
          "y2": 302.85839866801365,
          "x3": 773.0493931868177,
          "y3": 297.84419483038687,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 320.4726130426684,
          "x1": 772.956647213966,
          "y1": 317.474448893791,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 314.4762847449136,
          "x1": 772.956647213966,
          "y1": 317.474448893791,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "curve",
          "x0": 761.5202174096507,
          "y0": 314.8030377908264,
          "x1": 761.5202174096507,
          "y1": 310.00597515262257,
          "x2": 760.8667113178251,
          "y2": 296.6500907956702,
          "x3": 769.8718934413395,
          "y3": 295.75080510128356,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "curve",
          "x0": 761.5202174096507,
          "y0": 320.7993660885812,
          "x1": 761.5202174096507,
          "y1": 325.59642872678506,
          "x2": 764.1342417769532,
          "y2": 335.6847826246093,
          "x3": 770.4375299299202,
          "y3": 338.4759816582142,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "line",
          "x0": 761.5202174096507,
          "y0": 314.8030377908264,
          "x1": 761.5202174096507,
          "y1": 317.80120193970384,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "line",
          "x0": 761.5202174096507,
          "y0": 320.7993660885812,
          "x1": 761.5202174096507,
          "y1": 317.80120193970384,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "curve",
          "x0": 761.5202174096507,
          "y0": 314.8030377908264,
          "x1": 761.5202174096507,
          "y1": 309.4063423228471,
          "x2": 758.0453920074167,
          "y2": 304.59756810593666,
          "x3": 756.4367441294104,
          "y3": 301.5625143445312,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "curve",
          "x0": 761.5202174096507,
          "y0": 320.7993660885812,
          "x1": 761.5202174096507,
          "y1": 326.19606155656055,
          "x2": 759.440241031367,
          "y2": 327.73730531434285,
          "x3": 756.1970266964123,
          "y3": 330.9510887424813,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C18:0)",
          "type": "curve",
          "x0": 761.5202174096507,
          "y0": 314.8030377908264,
          "x1": 761.5202174096507,
          "y1": 309.4063423228471,
          "x2": 760.0937471231927,
          "y2": 309.49886379462885,
          "x3": 756.8414815467274,
          "y3": 307.585602537504,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "curve",
          "x0": 293.40123712728047,
          "y0": 308.7839504437825,
          "x1": 293.40123712728047,
          "y1": 303.38725497580316,
          "x2": 292.5148536126117,
          "y2": 303.3320641611485,
          "x3": 288.88420037032756,
          "y3": 302.41443841596055,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "curve",
          "x0": 293.40123712728047,
          "y0": 308.7839504437825,
          "x1": 293.40123712728047,
          "y1": 303.9868878055786,
          "x2": 291.539205908989,
          "y2": 288.78686898654576,
          "x3": 301.16256894973986,
          "y3": 288.58797549423986,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "curve",
          "x0": 293.40123712728047,
          "y0": 314.7802787415373,
          "x1": 293.40123712728047,
          "y1": 319.57734137974114,
          "x2": 294.33230763445135,
          "y2": 331.0532977621911,
          "x3": 301.70606653749434,
          "y3": 332.13678630972817,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "curve",
          "x0": 293.40123712728047,
          "y0": 308.7839504437825,
          "x1": 293.40123712728047,
          "y1": 303.38725497580316,
          "x2": 290.2531647709592,
          "y2": 300.53899903436957,
          "x3": 288.7813982930366,
          "y3": 297.64740785486464,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "line",
          "x0": 293.40123712728047,
          "y0": 308.7839504437825,
          "x1": 293.40123712728047,
          "y1": 311.78211459265987,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "line",
          "x0": 293.40123712728047,
          "y0": 314.7802787415373,
          "x1": 293.40123712728047,
          "y1": 311.78211459265987,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C8:0)",
          "type": "curve",
          "x0": 293.40123712728047,
          "y0": 314.7802787415373,
          "x1": 293.40123712728047,
          "y1": 320.17697420951663,
          "x2": 292.42558942365775,
          "y2": 322.4045164795029,
          "x3": 288.8925423594884,
          "y3": 325.59871805871035,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "curve",
          "x0": 205.94545309565973,
          "y0": 308.5147579146116,
          "x1": 205.94545309565973,
          "y1": 303.1180624466323,
          "x2": 203.81771543546336,
          "y2": 301.2008770123697,
          "x3": 200.8217526935551,
          "y3": 300.74254665813197,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "curve",
          "x0": 205.94545309565973,
          "y0": 314.5110862123665,
          "x1": 205.94545309565973,
          "y1": 319.9077816803458,
          "x2": 204.96976879335352,
          "y2": 322.75603762177934,
          "x3": 202.02759508055885,
          "y3": 325.6886235760901,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "curve",
          "x0": 205.94545309565973,
          "y0": 314.5110862123665,
          "x1": 205.94545309565973,
          "y1": 319.3081488505703,
          "x2": 205.01445578585572,
          "y2": 333.8875271955228,
          "x3": 218.51185170335268,
          "y3": 333.6988184286867,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "curve",
          "x0": 205.94545309565973,
          "y0": 308.5147579146116,
          "x1": 205.94545309565973,
          "y1": 303.1180624466323,
          "x2": 202.79738073933845,
          "y2": 300.26980650519874,
          "x3": 201.3256142614159,
          "y3": 297.37821532569365,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "curve",
          "x0": 205.94545309565973,
          "y0": 308.5147579146116,
          "x1": 205.94545309565973,
          "y1": 303.71769527640777,
          "x2": 205.01449238453918,
          "y2": 289.1383901288222,
          "x3": 218.52937609594042,
          "y3": 289.0833458647784,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "line",
          "x0": 205.94545309565973,
          "y0": 314.5110862123665,
          "x1": 205.94545309565973,
          "y1": 311.51292206348904,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C6:0)",
          "type": "line",
          "x0": 205.94545309565973,
          "y0": 308.5147579146116,
          "x1": 205.94545309565973,
          "y1": 311.51292206348904,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "line",
          "x0": 304.2632139960394,
          "y0": 217.5975986345656,
          "x1": 304.2632139960394,
          "y1": 220.59576278344304,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "line",
          "x0": 304.2632139960394,
          "y0": 223.59392693232044,
          "x1": 304.2632139960394,
          "y1": 220.59576278344304,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 217.5975986345656,
          "x1": 304.2632139960394,
          "y1": 212.20090316658627,
          "x2": 307.41128635236066,
          "y2": 209.35264722515274,
          "x3": 308.88305283028325,
          "y3": 206.46105604564764,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 223.59392693232044,
          "x1": 304.2632139960394,
          "y1": 228.99062240029977,
          "x2": 307.41128635236066,
          "y2": 231.8388783417333,
          "x3": 308.88305283028325,
          "y3": 234.7304695212384,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 217.5975986345656,
          "x1": 304.2632139960394,
          "y1": 212.80053599636176,
          "x2": 304.2632139960394,
          "y2": 205.97971255766564,
          "x3": 304.2632139960394,
          "y3": 200.96594119553157,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 217.5975986345656,
          "x1": 304.2632139960394,
          "y1": 212.20090316658627,
          "x2": 301.1151416397181,
          "y2": 209.35264722515274,
          "x3": 299.6433751617956,
          "y3": 206.46105604564764,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C8:0)",
          "type": "curve",
          "x0": 304.2632139960394,
          "y0": 223.59392693232044,
          "x1": 304.2632139960394,
          "y1": 228.39098957052428,
          "x2": 304.2632139960394,
          "y2": 235.2118130092204,
          "x3": 304.2632139960394,
          "y3": 240.22558437135447,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "curve",
          "x0": 673.9914046154302,
          "y0": 168.330136679557,
          "x1": 677.920947257829,
          "y1": 171.08159167217767,
          "x2": 688.086761003084,
          "y2": 178.80761914823103,
          "x3": 688.5490684115476,
          "y3": 196.07154432901697,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "curve",
          "x0": 673.9914046154302,
          "y0": 168.330136679557,
          "x1": 678.4121400881293,
          "y1": 171.4255235462548,
          "x2": 678.9396636931466,
          "y2": 175.63796230719853,
          "x3": 680.4641657003455,
          "y3": 178.50210087664206,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "curve",
          "x0": 673.9914046154302,
          "y0": 168.330136679557,
          "x1": 678.4121400881293,
          "y1": 171.4255235462548,
          "x2": 682.5509483709606,
          "y2": 170.48043758904902,
          "x3": 685.7637748921658,
          "y3": 170.93336347655185,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "curve",
          "x0": 669.0794763124306,
          "y0": 164.89081793878168,
          "x1": 657.9037603321868,
          "y1": 154.1303998476846,
          "x2": 566.8789976543286,
          "y2": 141.98569756250274,
          "x3": 227.8986200334386,
          "y3": 153.61154430272435,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "curve",
          "x0": 669.0794763124306,
          "y0": 164.89081793878168,
          "x1": 664.7688296795724,
          "y1": 161.09493227069768,
          "x2": 655.4775483761445,
          "y2": 163.74558732778993,
          "x3": 651.7607135236105,
          "y3": 164.27979572666973,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "curve",
          "x0": 669.0794763124306,
          "y0": 164.89081793878168,
          "x1": 622.4255436686653,
          "y1": 162.93291815395725,
          "x2": 650.7546718366425,
          "y2": 334.70528704594386,
          "x3": 590.2937512000528,
          "y3": 334.542263100844,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "line",
          "x0": 669.0794763124306,
          "y0": 164.89081793878168,
          "x1": 671.5354404639301,
          "y1": 166.61047730916928,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C16:0)",
          "type": "line",
          "x0": 673.9914046154302,
          "y0": 168.330136679557,
          "x1": 671.5354404639301,
          "y1": 166.61047730916928,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 310.2224490627088,
          "x1": 494.3114363115296,
          "y1": 304.82575359472946,
          "x2": 494.44070286150315,
          "y2": 306.07413468748103,
          "x3": 501.0202443052959,
          "y3": 304.3528982606922,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 310.2224490627088,
          "x1": 494.3114363115296,
          "y1": 305.42538642450495,
          "x2": 494.3114363115296,
          "y2": 298.19487732318026,
          "x3": 494.3114363115296,
          "y3": 293.1397516631876,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 310.2224490627088,
          "x1": 494.3114363115296,
          "y1": 304.82575359472946,
          "x2": 497.45950866785086,
          "y2": 301.9774976532959,
          "x3": 498.9312751457733,
          "y3": 299.0859064737908,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 316.2187773604636,
          "x1": 494.3114363115296,
          "y1": 313.2206132115862,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 310.2224490627088,
          "x1": 494.3114363115296,
          "y1": 313.2206132115862,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 316.2187773604636,
          "x1": 494.3114363115296,
          "y1": 321.61547282844293,
          "x2": 497.45950866785086,
          "y2": 324.46372876987647,
          "x3": 498.9312751457733,
          "y3": 327.35531994938145,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 316.2187773604636,
          "x1": 494.3114363115296,
          "y1": 321.01583999866745,
          "x2": 494.3114363115296,
          "y2": 327.8366634373636,
          "x3": 494.3114363115296,
          "y3": 332.85043479949763,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "curve",
          "x0": 673.6525808432898,
          "y0": 314.71238935960486,
          "x1": 673.6525808432898,
          "y1": 319.50945199780875,
          "x2": 672.4235970527709,
          "y2": 334.52354950487506,
          "x3": 685.1162706777817,
          "y3": 334.61693065749307,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "line",
          "x0": 673.6525808432898,
          "y0": 308.71606106185004,
          "x1": 673.6525808432898,
          "y1": 311.7142252107275,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "line",
          "x0": 673.6525808432898,
          "y0": 314.71238935960486,
          "x1": 673.6525808432898,
          "y1": 311.7142252107275,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "curve",
          "x0": 673.6525808432898,
          "y0": 308.71606106185004,
          "x1": 673.6525808432898,
          "y1": 303.3193655938707,
          "x2": 673.5233874906831,
          "y2": 301.7000202455891,
          "x3": 670.3566360714416,
          "y3": 299.65060254640383,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "curve",
          "x0": 673.6525808432898,
          "y0": 308.71606106185004,
          "x1": 673.6525808432898,
          "y1": 303.9189984236462,
          "x2": 674.0621933085514,
          "y2": 290.953182834989,
          "x3": 685.6307638192961,
          "y3": 289.90918962136726,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "curve",
          "x0": 673.6525808432898,
          "y0": 314.71238935960486,
          "x1": 673.6525808432898,
          "y1": 320.10908482758424,
          "x2": 672.703942968059,
          "y2": 320.90898565324176,
          "x3": 669.9201084723996,
          "y3": 324.5696747435934,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C16:0)",
          "type": "curve",
          "x0": 673.6525808432898,
          "y0": 308.71606106185004,
          "x1": 673.6525808432898,
          "y1": 303.3193655938707,
          "x2": 673.3721617306347,
          "y2": 296.37439942088514,
          "x3": 671.5288772527214,
          "y3": 293.3020338534959,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 520.3404199868422,
          "y0": 383.2912814023568,
          "x1": 520.3404199868422,
          "y1": 388.6879768703361,
          "x2": 521.7760399441648,
          "y2": 391.2087477921877,
          "x3": 526.9691723572165,
          "y3": 394.18908018282855,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 520.3404199868422,
          "y0": 383.2912814023568,
          "x1": 520.3404199868422,
          "y1": 388.6879768703361,
          "x2": 521.1966095876581,
          "y2": 389.2443500562643,
          "x3": 528.1715718384102,
          "y3": 389.40147051438794,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 520.3404199868422,
          "y0": 377.294953104602,
          "x1": 520.3404199868422,
          "y1": 372.4978904663981,
          "x2": 521.8138097854935,
          "y2": 350.94368142275835,
          "x3": 497.9417339845291,
          "y3": 337.8574848944318,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 520.3404199868422,
          "y0": 377.294953104602,
          "x1": 520.3404199868422,
          "y1": 380.29311725347935,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 520.3404199868422,
          "y0": 383.2912814023568,
          "x1": 520.3404199868422,
          "y1": 380.29311725347935,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 520.3404199868422,
          "y0": 383.2912814023568,
          "x1": 520.3404199868422,
          "y1": 388.0883440405606,
          "x2": 520.013154559361,
          "y2": 407.3444485525072,
          "x3": 520.0184187257674,
          "y3": 413.2589317731555,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 520.3404199868422,
          "y0": 377.294953104602,
          "x1": 520.3404199868422,
          "y1": 371.89825763662265,
          "x2": 519.1567453664444,
          "y2": 364.6300518913362,
          "x3": 522.9496653379616,
          "y3": 360.6876310918369,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "line",
          "x0": 222.92904716633726,
          "y0": 75.95581666355702,
          "x1": 222.93491157567613,
          "y1": 78.95397507703665,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "line",
          "x0": 222.94077598501426,
          "y0": 81.95213349051602,
          "x1": 222.93491157567613,
          "y1": 78.95397507703665,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.94077598501426,
          "y0": 81.95213349051602,
          "x1": 222.95015903995576,
          "y1": 86.74918695208272,
          "x2": 222.52442502581857,
          "y2": 94.33055023094431,
          "x3": 222.43511546779007,
          "y3": 105.10839345820435,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.94077598501426,
          "y0": 81.95213349051602,
          "x1": 222.95133192182348,
          "y1": 87.34881863477887,
          "x2": 227.93975697327446,
          "y2": 89.74702373166483,
          "x3": 229.34658569748174,
          "y3": 92.74036884507575,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.92904716633726,
          "y0": 75.95581666355702,
          "x1": 222.9184912295281,
          "y1": 70.55913151929444,
          "x2": 221.6269215234781,
          "y2": 68.95839280182163,
          "x3": 215.3567866567526,
          "y3": 68.90274904804991,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.92904716633726,
          "y0": 75.95581666355702,
          "x1": 222.9184912295281,
          "y1": 70.55913151929444,
          "x2": 223.67113647130242,
          "y2": 66.70541221095661,
          "x3": 230.1444196388029,
          "y3": 65.62069614134663,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.92904716633726,
          "y0": 75.95581666355702,
          "x1": 222.60934387435563,
          "y1": 46.952101173416374,
          "x2": 221.29351795874044,
          "y2": 56.44881783841519,
          "x3": 170.28017160819672,
          "y3": 9.179023356527008,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.94077598501426,
          "y0": 81.95213349051602,
          "x1": 222.95133192182348,
          "y1": 87.34881863477887,
          "x2": 219.80883677654268,
          "y2": 90.20322675738927,
          "x3": 218.342729066666,
          "y3": 93.09769118072705,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "name": "Acetyl-CoA carboxylase",
          "type": "curve",
          "x0": 222.94077598501426,
          "y0": 81.95213349051602,
          "x1": 222.95133192182348,
          "y1": 87.34881863477887,
          "x2": 213.51270410823594,
          "y2": 90.21554201700087,
          "x3": 207.6364237395589,
          "y3": 93.92150297221559,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "curve",
          "x0": 757.8137958398083,
          "y0": 178.92618953022915,
          "x1": 762.1881717534651,
          "y1": 182.0867523503812,
          "x2": 762.6532085072508,
          "y2": 186.3065464550945,
          "x3": 764.1350961633456,
          "y3": 189.19296380011593,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "line",
          "x0": 757.8137958398083,
          "y0": 178.92618953022915,
          "x1": 755.3835869988878,
          "y1": 177.17032129681135,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "line",
          "x0": 752.9533781579672,
          "y0": 175.41445306339355,
          "x1": 755.3835869988878,
          "y1": 177.17032129681135,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "curve",
          "x0": 752.9533781579672,
          "y0": 175.41445306339355,
          "x1": 711.3758661822046,
          "y1": 145.56712770904275,
          "x2": 743.4727835849172,
          "y2": 132.77478955365532,
          "x3": 229.3284741646275,
          "y3": 153.5199003669191,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "curve",
          "x0": 752.9533781579672,
          "y0": 175.41445306339355,
          "x1": 746.9404059885301,
          "y1": 171.02490645272266,
          "x2": 746.153374017681,
          "y2": 168.360849184441,
          "x3": 748.664953977192,
          "y3": 161.24237592938766,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "curve",
          "x0": 757.8137958398083,
          "y0": 178.92618953022915,
          "x1": 761.702129985281,
          "y1": 181.73557870369777,
          "x2": 771.4786446952419,
          "y2": 188.99770939385118,
          "x3": 772.4757749160249,
          "y3": 201.5002523168948,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "curve",
          "x0": 757.8137958398083,
          "y0": 178.92618953022915,
          "x1": 762.1881717534651,
          "y1": 182.0867523503812,
          "x2": 766.3405317974282,
          "y2": 181.20310788916126,
          "x3": 769.5462930490104,
          "y3": 181.7035985611843,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C18:0)",
          "type": "curve",
          "x0": 752.9533781579672,
          "y0": 175.41445306339355,
          "x1": 706.75439277537,
          "y1": 148.0740184509596,
          "x2": 758.4770963719652,
          "y2": 334.8811707997061,
          "x3": 691.3175560850905,
          "y3": 334.93126514813025,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 226.2738528941413,
          "x1": 494.3114363115296,
          "y1": 231.07091553234517,
          "x2": 494.3114363115296,
          "y2": 237.89173897104126,
          "x3": 494.3114363115296,
          "y3": 242.90551033317536,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 220.27752459638648,
          "x1": 494.3114363115296,
          "y1": 215.48046195818264,
          "x2": 494.3114363115296,
          "y2": 208.65963851948652,
          "x3": 494.3114363115296,
          "y3": 203.64586715735246,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 220.27752459638648,
          "x1": 494.3114363115296,
          "y1": 223.2756887452639,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 220.27752459638648,
          "x1": 494.3114363115296,
          "y1": 214.88082912840716,
          "x2": 497.45950866785086,
          "y2": 212.03257318697362,
          "x3": 498.9312751457733,
          "y3": 209.14098200746864,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 220.27752459638648,
          "x1": 494.3114363115296,
          "y1": 214.88082912840716,
          "x2": 491.1633639552083,
          "y2": 212.03257318697362,
          "x3": 489.69159747728577,
          "y3": 209.14098200746864,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 226.2738528941413,
          "x1": 494.3114363115296,
          "y1": 223.2756887452639,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 226.2738528941413,
          "x1": 494.3114363115296,
          "y1": 231.67054836212066,
          "x2": 497.45950866785086,
          "y2": 234.5188043035542,
          "x3": 498.9312751457733,
          "y3": 237.41039548305915,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 308.2044742762549,
          "x1": 222.39356021797647,
          "y1": 302.8077788082756,
          "x2": 225.54163257429775,
          "y2": 299.959522866842,
          "x3": 227.0133990522203,
          "y3": 297.0679316873369,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 308.2044742762549,
          "x1": 222.39356021797647,
          "y1": 303.40741163805103,
          "x2": 222.39356021797647,
          "y2": 296.58658819935494,
          "x3": 222.39356021797653,
          "y3": 291.57281683722084,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 314.20080257400974,
          "x1": 222.39356021797647,
          "y1": 311.2026384251323,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 308.2044742762549,
          "x1": 222.39356021797647,
          "y1": 311.2026384251323,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 314.20080257400974,
          "x1": 222.39356021797647,
          "y1": 318.9978652122136,
          "x2": 222.39356021797647,
          "y2": 326.64303739711715,
          "x3": 222.39356021797647,
          "y3": 331.3185266091702,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 314.20080257400974,
          "x1": 222.39356021797647,
          "y1": 319.59749804198907,
          "x2": 224.30027842877013,
          "y2": 323.06639445750295,
          "x3": 227.23471437673882,
          "y3": 325.6435065064294,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 308.2044742762549,
          "x1": 222.39356021797647,
          "y1": 302.8077788082756,
          "x2": 223.59026396968537,
          "y2": 302.13187432217364,
          "x3": 228.4980416330816,
          "y3": 301.14623728594404,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 368.43972537704457,
          "x1": 588.1075331457773,
          "y1": 365.44156122816713,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 362.44339707928975,
          "x1": 588.1075331457773,
          "y1": 365.44156122816713,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 368.43972537704457,
          "x1": 588.1075331457773,
          "y1": 373.8364208450239,
          "x2": 588.9648939044638,
          "y2": 374.721157418937,
          "x3": 584.9576217814131,
          "y3": 378.7318033709824,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 362.44339707928975,
          "x1": 588.1075331457773,
          "y1": 357.04670161131037,
          "x2": 587.6559785892728,
          "y2": 347.9807685345682,
          "x3": 581.6246626010148,
          "y3": 345.76125037982683,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 368.43972537704457,
          "x1": 588.1075331457773,
          "y1": 373.8364208450239,
          "x2": 587.5774378145719,
          "y2": 387.4837771170356,
          "x3": 585.495380499253,
          "y3": 390.9785982336817,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 362.44339707928975,
          "x1": 588.1075331457773,
          "y1": 357.04670161131037,
          "x2": 587.5775110119389,
          "y2": 353.8711802423956,
          "x3": 582.6689669253724,
          "y3": 352.27923075430164,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 362.44339707928975,
          "x1": 588.1075331457773,
          "y1": 357.64633444108586,
          "x2": 588.7619908033728,
          "y2": 343.7897068970615,
          "x3": 588.2487872019243,
          "y3": 337.07820560406833,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "name": "Acyl-[acyl-carrier-protein] synthetase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 368.43972537704457,
          "x1": 588.1075331457773,
          "y1": 373.2367880152484,
          "x2": 590.5618408584692,
          "y2": 395.7653272099064,
          "x3": 610.3988219698233,
          "y3": 397.23338586493657,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 309.1261422282423,
          "x1": 588.1075331457773,
          "y1": 312.12430637711975,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 315.12247052599713,
          "x1": 588.1075331457773,
          "y1": 312.12430637711975,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 315.12247052599713,
          "x1": 588.1075331457773,
          "y1": 319.919533164201,
          "x2": 588.1075331457773,
          "y2": 326.7403566028971,
          "x3": 588.1075331457773,
          "y3": 331.75412796503105,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 309.1261422282423,
          "x1": 588.1075331457773,
          "y1": 303.729446760263,
          "x2": 591.2556055020985,
          "y2": 300.88119081882945,
          "x3": 592.7273719800211,
          "y3": 297.98959963932435,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 309.1261422282423,
          "x1": 588.1075331457773,
          "y1": 304.3290795900385,
          "x2": 588.1076063431442,
          "y2": 297.50818295397545,
          "x3": 588.1076032897331,
          "y3": 292.49440410932453,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 309.1261422282423,
          "x1": 588.1075331457773,
          "y1": 303.729446760263,
          "x2": 590.2850816141599,
          "y2": 302.92954593460547,
          "x3": 594.5911175630766,
          "y3": 302.357610388536,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 315.12247052599713,
          "x1": 588.1075331457773,
          "y1": 320.5191659939765,
          "x2": 591.2556055020985,
          "y2": 323.36742193541005,
          "x3": 592.7273719800211,
          "y3": 326.25901311491515,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "curve",
          "x0": 387.6559147040716,
          "y0": 171.45701779992737,
          "x1": 392.23710321327894,
          "y1": 174.30956645283672,
          "x2": 392.99096599005236,
          "y2": 178.48743820557667,
          "x3": 394.66766589920377,
          "y3": 181.26522032978664,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "curve",
          "x0": 382.5657052493967,
          "y0": 168.2875192966952,
          "x1": 332.7232908945445,
          "y1": 171.2876125102845,
          "x2": 379.881240415493,
          "y2": 333.91460878819254,
          "x3": 307.227343148632,
          "y3": 332.98906295183383,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "curve",
          "x0": 382.5657052493967,
          "y0": 168.2875192966952,
          "x1": 377.8418916707534,
          "y1": 164.45273517714054,
          "x2": 369.13877630403056,
          "y2": 163.19272465171048,
          "x3": 364.46873704912525,
          "y3": 164.86495028039445,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "curve",
          "x0": 387.6559147040716,
          "y0": 171.45701779992737,
          "x1": 392.23710321327894,
          "y1": 174.30956645283672,
          "x2": 396.318939418447,
          "y2": 173.14271827816782,
          "x3": 399.5515119940865,
          "y3": 173.42177142391282,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "curve",
          "x0": 382.5657052493967,
          "y0": 168.2875192966952,
          "x1": 366.7744928476789,
          "y1": 155.39163837819197,
          "x2": 351.1362732352144,
          "y2": 150.0016144108356,
          "x3": 227.99478123386322,
          "y3": 153.637600365648,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "line",
          "x0": 387.6559147040716,
          "y0": 171.45701779992737,
          "x1": 385.11080997673434,
          "y1": 169.87226854831107,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "curve",
          "x0": 387.6559147040716,
          "y0": 171.45701779992737,
          "x1": 391.72808226781154,
          "y1": 173.99261660251375,
          "x2": 400.7918379617698,
          "y2": 179.8525464456855,
          "x3": 401.426181604058,
          "y3": 194.41895750820206,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C10:0)",
          "type": "line",
          "x0": 382.5657052493967,
          "y0": 168.2875192966952,
          "x1": 385.11080997673434,
          "y1": 169.87226854831107,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 270.55922525433397,
          "x1": 688.8101451895113,
          "y1": 275.35628789253786,
          "x2": 689.2198308521399,
          "y2": 281.3578132033437,
          "x3": 689.2012912508052,
          "y3": 286.28651481297595,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 264.56289695657915,
          "x1": 688.8101451895113,
          "y1": 259.7658343183753,
          "x2": 688.8101451895113,
          "y2": 252.9450108796792,
          "x3": 688.8101451895113,
          "y3": 247.93123951754524,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 270.55922525433397,
          "x1": 688.8101451895113,
          "y1": 275.9559207223133,
          "x2": 691.9582175458327,
          "y2": 278.80417666374683,
          "x3": 693.4299840237551,
          "y3": 281.695767843252,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)",
          "type": "line",
          "x0": 688.8101451895113,
          "y0": 270.55922525433397,
          "x1": 688.8101451895113,
          "y1": 267.5610611054566,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C16:0)",
          "type": "line",
          "x0": 688.8101451895113,
          "y0": 264.56289695657915,
          "x1": 688.8101451895113,
          "y1": 267.5610611054566,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "line",
          "x0": 93.41104853156426,
          "y0": 163.79496644025937,
          "x1": 93.41104853156426,
          "y1": 160.79680229138197,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "line",
          "x0": 93.41104853156426,
          "y0": 157.79863814250456,
          "x1": 93.41104853156426,
          "y1": 160.79680229138197,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 163.79496644025937,
          "x1": 93.41104853156426,
          "y1": 168.5920290784632,
          "x2": 93.41104853156426,
          "y2": 175.41285251715934,
          "x3": 93.41104853156426,
          "y3": 180.4266238792934,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 157.79863814250456,
          "x1": 93.41104853156426,
          "y1": 153.0015755043007,
          "x2": 93.41104853156426,
          "y2": 152.36051296485078,
          "x3": 93.45640051186425,
          "y3": 141.85352295134433,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 163.79496644025937,
          "x1": 93.41104853156426,
          "y1": 169.1916619082387,
          "x2": 90.26297617524298,
          "y2": 172.03991784967224,
          "x3": 88.79120969732043,
          "y3": 174.93150902917736,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 157.79863814250456,
          "x1": 93.41104853156426,
          "y1": 152.4019426745252,
          "x2": 90.26297617524298,
          "y2": 149.55368673309167,
          "x3": 88.79120969732043,
          "y3": 146.66209555358657,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 157.79863814250456,
          "x1": 93.41104853156426,
          "y1": 152.4019426745252,
          "x2": 96.55912088788554,
          "y2": 149.55368673309167,
          "x3": 98.0308873658081,
          "y3": 146.66209555358657,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 716.9391613216427,
          "y0": 369.5535401924755,
          "x1": 716.9391613216427,
          "y1": 372.5517043413529,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 716.9391613216427,
          "y0": 375.5498684902303,
          "x1": 716.9391613216427,
          "y1": 372.5517043413529,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 716.9391613216427,
          "y0": 375.5498684902303,
          "x1": 716.9391613216427,
          "y1": 380.94656395820965,
          "x2": 717.4705742054525,
          "y2": 393.2801738888138,
          "x3": 721.9867066399723,
          "y3": 397.32846792853417,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 716.9391613216427,
          "y0": 369.5535401924755,
          "x1": 716.9391613216427,
          "y1": 364.1568447244961,
          "x2": 718.1247390735804,
          "y2": 357.05655373891494,
          "x3": 721.2949208496727,
          "y3": 353.8596893351809,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 716.9391613216427,
          "y0": 375.5498684902303,
          "x1": 716.9391613216427,
          "y1": 380.94656395820965,
          "x2": 717.7160049767217,
          "y2": 383.7948930970101,
          "x3": 722.2371349452899,
          "y3": 386.9024066147053,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 716.9391613216427,
          "y0": 375.5498684902303,
          "x1": 716.9391613216427,
          "y1": 380.34693112843416,
          "x2": 716.8123834821442,
          "y2": 391.64553029084675,
          "x3": 716.3833026769443,
          "y3": 405.5408290183082,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 716.9391613216427,
          "y0": 369.5535401924755,
          "x1": 716.9391613216427,
          "y1": 364.7564775542716,
          "x2": 716.6120422888953,
          "y2": 345.5065216211461,
          "x3": 692.8014674188452,
          "y3": 336.66626446686286,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 223.88677885864323,
          "x1": 401.78230136961747,
          "y1": 228.6838414968471,
          "x2": 401.78230136961747,
          "y2": 235.50466493554322,
          "x3": 401.7823013696176,
          "y3": 240.51843629767728,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 217.8904505608884,
          "x1": 401.78230136961747,
          "y1": 212.49375509290908,
          "x2": 404.93037372593886,
          "y2": 209.64549915147555,
          "x3": 406.40214020386134,
          "y3": 206.75390797197045,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 223.88677885864323,
          "x1": 401.78230136961747,
          "y1": 229.28347432662258,
          "x2": 404.93037372593886,
          "y2": 232.13173026805612,
          "x3": 406.40214020386145,
          "y3": 235.02332144756122,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "line",
          "x0": 401.78230136961747,
          "y0": 223.88677885864323,
          "x1": 401.78230136961747,
          "y1": 220.88861470976582,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 217.8904505608884,
          "x1": 401.78230136961747,
          "y1": 212.49375509290908,
          "x2": 398.6342290132962,
          "y2": 209.64549915147555,
          "x3": 397.16246253537366,
          "y3": 206.75390797197045,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 217.8904505608884,
          "x1": 401.78230136961747,
          "y1": 213.09338792268457,
          "x2": 401.78230136961747,
          "y2": 206.27256448398845,
          "x3": 401.7823013696174,
          "y3": 201.25879312185452,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C10:0)",
          "type": "line",
          "x0": 401.78230136961747,
          "y0": 217.8904505608884,
          "x1": 401.78230136961747,
          "y1": 220.88861470976582,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)",
          "type": "line",
          "x0": 93.41104853156426,
          "y0": 202.7711003756657,
          "x1": 93.41104853156426,
          "y1": 205.7692645245431,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 208.7674286734205,
          "x1": 93.41104853156426,
          "y1": 214.16412414139987,
          "x2": 90.26297617524298,
          "y2": 217.0123800828334,
          "x3": 88.79120969732043,
          "y3": 219.9039712623385,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 208.7674286734205,
          "x1": 93.41104853156426,
          "y1": 213.56449131162438,
          "x2": 93.41104853156426,
          "y2": 220.38531475032048,
          "x3": 93.41104853156426,
          "y3": 225.39908611245443,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)",
          "type": "curve",
          "x0": 93.41104853156426,
          "y0": 202.7711003756657,
          "x1": 93.41104853156426,
          "y1": 197.97403773746186,
          "x2": 93.41104853156426,
          "y2": 191.15321429876573,
          "x3": 93.41104853156426,
          "y3": 186.13944293663178,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C4:0)",
          "type": "line",
          "x0": 93.41104853156426,
          "y0": 208.7674286734205,
          "x1": 93.41104853156426,
          "y1": 205.7692645245431,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 270.150008292836,
          "x1": 588.1075331457773,
          "y1": 267.1518441439586,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 270.150008292836,
          "x1": 588.1075331457773,
          "y1": 275.5467037608153,
          "x2": 591.2556055020985,
          "y2": 278.39495970224885,
          "x3": 592.7273719800211,
          "y3": 281.286550881754,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)",
          "type": "line",
          "x0": 588.1075331457773,
          "y0": 264.1536799950812,
          "x1": 588.1075331457773,
          "y1": 267.1518441439586,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 270.150008292836,
          "x1": 588.1075331457773,
          "y1": 274.94707093103983,
          "x2": 588.1076063431442,
          "y2": 281.76782117236905,
          "x3": 588.1076032896893,
          "y3": 286.7815850519999,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C14:0)",
          "type": "curve",
          "x0": 588.1075331457773,
          "y0": 264.1536799950812,
          "x1": 588.1075331457773,
          "y1": 259.35661735687734,
          "x2": 588.1075331457773,
          "y2": 252.5357939181812,
          "x3": 588.1075331457773,
          "y3": 247.52202255604726,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "name": "Malonyl-CoA-ACP transacylase",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 134.31095364136513,
          "x1": 222.39356021797647,
          "y1": 139.70764910934446,
          "x2": 226.66839624191846,
          "y2": 141.7923833164777,
          "x3": 228.05075342763956,
          "y3": 144.71960300416,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "name": "Malonyl-CoA-ACP transacylase",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 134.31095364136513,
          "x1": 222.39356021797647,
          "y1": 131.3127894924877,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "name": "Malonyl-CoA-ACP transacylase",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 134.31095364136513,
          "x1": 222.39356021797647,
          "y1": 139.10801627956897,
          "x2": 222.39356021797647,
          "y2": 145.9288397182651,
          "x3": 222.39356021797653,
          "y3": 150.94261108039916,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "name": "Malonyl-CoA-ACP transacylase",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 128.3146253436103,
          "x1": 222.39356021797647,
          "y1": 122.91792987563096,
          "x2": 225.54163257429775,
          "y2": 120.06967393419743,
          "x3": 227.0133990522203,
          "y3": 117.17808275469231,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "name": "Malonyl-CoA-ACP transacylase",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 128.3146253436103,
          "x1": 222.39356021797647,
          "y1": 131.3127894924877,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "name": "Malonyl-CoA-ACP transacylase",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 128.3146253436103,
          "x1": 222.39356021797647,
          "y1": 123.51756270540645,
          "x2": 222.39356021797647,
          "y2": 116.69673926671034,
          "x3": 222.39356021797653,
          "y3": 111.68296790457624,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 173.28708757677146,
          "x1": 222.39356021797647,
          "y1": 176.28525172564886,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 173.28708757677146,
          "x1": 159.2234273984735,
          "y1": 171.12351980546973,
          "x2": 181.98341666731972,
          "y2": 272.98073015842795,
          "x3": 96.9974102661158,
          "y3": 273.1608242573738,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 179.28341587452627,
          "x1": 222.39356021797647,
          "y1": 184.6801113425056,
          "x2": 225.54163257429775,
          "y2": 187.52836728393916,
          "x3": 227.0133990522203,
          "y3": 190.41995846344412,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "line",
          "x0": 222.39356021797647,
          "y0": 179.28341587452627,
          "x1": 222.39356021797647,
          "y1": 176.28525172564886,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 179.28341587452627,
          "x1": 222.39356021797647,
          "y1": 184.08047851273014,
          "x2": 222.39356021797647,
          "y2": 190.90130195142623,
          "x3": 222.39356021797653,
          "y3": 195.91507331356033,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 179.28341587452627,
          "x1": 222.39356021797647,
          "y1": 184.6801113425056,
          "x2": 219.2454878616552,
          "y2": 187.52836728393916,
          "x3": 217.77372138373264,
          "y3": 190.41995846344412,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 173.28708757677146,
          "x1": 222.1448721638795,
          "y1": 164.75952113369607,
          "x2": 222.39356021797647,
          "y2": 161.6692014998715,
          "x3": 222.38365146401603,
          "y3": 156.50654184631324,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "name": "3-oxoacyl-[acyl-carrier-protein] synthase (n-C6:0)",
          "type": "curve",
          "x0": 222.39356021797647,
          "y0": 173.28708757677146,
          "x1": 220.65263404324745,
          "y1": 166.1494659340631,
          "x2": 219.2454878616552,
          "y2": 165.04213616735856,
          "x3": 217.672526224531,
          "y3": 162.05738755283215,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 275.50015080950726,
          "x1": 772.956647213966,
          "y1": 272.5019866606298,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 269.50382251175245,
          "x1": 772.956647213966,
          "y1": 272.5019866606298,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 269.50382251175245,
          "x1": 772.956647213966,
          "y1": 264.7067598735486,
          "x2": 772.956647213966,
          "y2": 257.88593643485245,
          "x3": 772.956647213966,
          "y3": 252.8721650727184,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 275.50015080950726,
          "x1": 772.956647213966,
          "y1": 280.8968462774866,
          "x2": 776.1047195702873,
          "y2": 283.7451022189201,
          "x3": 777.5764860482099,
          "y3": 286.6366933984252,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 275.50015080950726,
          "x1": 772.956647213966,
          "y1": 280.2972134477111,
          "x2": 772.956647213966,
          "y2": 287.11803688640725,
          "x3": 772.956647213966,
          "y3": 292.1318082485413,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "curve",
          "x0": 304.57357083176305,
          "y0": 378.58327599539564,
          "x1": 304.57357083176305,
          "y1": 383.97997146337497,
          "x2": 306.0763859719144,
          "y2": 387.4864181281167,
          "x3": 305.94383807116117,
          "y3": 395.8215094303432,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "curve",
          "x0": 304.57357083176305,
          "y0": 372.58694769764077,
          "x1": 304.57357083176305,
          "y1": 367.19025222966144,
          "x2": 303.7730478284867,
          "y2": 356.77390093068686,
          "x3": 297.7039354825548,
          "y3": 355.99155483246346,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "curve",
          "x0": 304.57357083176305,
          "y0": 378.58327599539564,
          "x1": 304.57357083176305,
          "y1": 383.97997146337497,
          "x2": 301.42549847544177,
          "y2": 386.8282274048085,
          "x3": 299.9537319975192,
          "y3": 389.7198185843136,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "line",
          "x0": 304.57357083176305,
          "y0": 372.58694769764077,
          "x1": 304.57357083176305,
          "y1": 375.5851118465182,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "line",
          "x0": 304.57357083176305,
          "y0": 378.58327599539564,
          "x1": 304.57357083176305,
          "y1": 375.5851118465182,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "curve",
          "x0": 304.57357083176305,
          "y0": 372.58694769764077,
          "x1": 304.24451206879235,
          "y1": 365.5449950134916,
          "x2": 300.76741754818386,
          "y2": 362.3676437104039,
          "x3": 296.37796536197123,
          "y3": 361.9285327183657,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "curve",
          "x0": 304.57357083176305,
          "y0": 372.58694769764077,
          "x1": 304.57357083176305,
          "y1": 361.5379515564116,
          "x2": 304.24454866747584,
          "y2": 352.7430683293592,
          "x3": 304.5207633328923,
          "y3": 336.4955421893386,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C8:0)",
          "type": "curve",
          "x0": 304.57357083176305,
          "y0": 378.58327599539564,
          "x1": 304.57357083176305,
          "y1": 383.3803386335995,
          "x2": 311.15635643324845,
          "y2": 408.24841206962515,
          "x3": 332.35498155688975,
          "y3": 411.452288582342,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "line",
          "x0": 20.740254323534366,
          "y0": 91.20872434068826,
          "x1": 20.740254323534366,
          "y1": 94.20688848956567,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "curve",
          "x0": 20.740254323534366,
          "y0": 91.20872434068826,
          "x1": 20.740254323534366,
          "y1": 86.41166170248441,
          "x2": 20.7402451738635,
          "y2": 73.69435117450683,
          "x3": 20.740245403489887,
          "y3": 68.17413356952717,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "line",
          "x0": 20.740254323534366,
          "y0": 97.20505263844308,
          "x1": 20.740254323534366,
          "y1": 94.20688848956567,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "curve",
          "x0": 20.740254323534366,
          "y0": 91.20872434068826,
          "x1": 20.740254323534366,
          "y1": 85.81202887270892,
          "x2": 31.336515600717515,
          "y2": -16.03511684229837,
          "x3": 216.97176790692396,
          "y3": 149.0097124106577,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "curve",
          "x0": 20.740254323534366,
          "y0": 97.20505263844308,
          "x1": 20.740254323534366,
          "y1": 102.60174810642242,
          "x2": 23.888326679855645,
          "y2": 105.45000404785596,
          "x3": 25.360093157778216,
          "y3": 108.34159522736107,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "curve",
          "x0": 20.740254323534366,
          "y0": 97.20505263844308,
          "x1": 20.429915787152456,
          "y1": 131.48455072305424,
          "x2": 21.050602009587138,
          "y2": 137.68473368767,
          "x3": 88.41487151755908,
          "y3": 137.13845103104018,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "curve",
          "x0": 20.740254323534366,
          "y0": 91.20872434068826,
          "x1": 20.740254323534366,
          "y1": 85.81202887270892,
          "x2": 17.592181967213083,
          "y2": 82.96377293127539,
          "x3": 16.12041548929051,
          "y3": 80.07218175177027,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "name": "Beta-ketoacyl-ACP synthase",
          "type": "curve",
          "x0": 20.740254323534366,
          "y0": 97.20505263844308,
          "x1": 20.11956810109968,
          "y1": 104.1534590876737,
          "x2": 17.592181967213083,
          "y2": 105.45000404785596,
          "x3": 16.081302323108773,
          "y3": 108.44026874755151,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "name": "Acetyl-CoA ACP transacylase",
          "type": "curve",
          "x0": 21.36093139629818,
          "y0": 36.61563938429582,
          "x1": 21.36093139629818,
          "y1": 16.30154013094613,
          "x2": 18.56786626951927,
          "y2": 20.652977199365665,
          "x3": 159.52558855579457,
          "y3": 6.096145282615329,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "name": "Acetyl-CoA ACP transacylase",
          "type": "curve",
          "x0": 21.36093139629818,
          "y0": 36.61563938429582,
          "x1": 21.36093139629818,
          "y1": 31.21894391631648,
          "x2": 20.695585630373905,
          "y2": 29.612042120410575,
          "x3": 16.02217618060739,
          "y3": 28.32769107801927,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "name": "Acetyl-CoA ACP transacylase",
          "type": "curve",
          "x0": 21.36093139629818,
          "y0": 42.61196768205064,
          "x1": 21.36093139629818,
          "y1": 48.008663150029975,
          "x2": 18.2128590399769,
          "y2": 50.85691909146352,
          "x3": 16.74109256205433,
          "y3": 53.74851027096862,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "name": "Acetyl-CoA ACP transacylase",
          "type": "line",
          "x0": 21.36093139629818,
          "y0": 42.61196768205064,
          "x1": 21.36093139629818,
          "y1": 39.613803533173225,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "name": "Acetyl-CoA ACP transacylase",
          "type": "curve",
          "x0": 21.36093139629818,
          "y0": 42.61196768205064,
          "x1": 21.36093139629818,
          "y1": 47.409030320254494,
          "x2": 20.7402451738635,
          "y2": 57.953989392900425,
          "x3": 20.758742545883976,
          "y3": 63.30915465334832,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "name": "Acetyl-CoA ACP transacylase",
          "type": "line",
          "x0": 21.36093139629818,
          "y0": 36.61563938429582,
          "x1": 21.36093139629818,
          "y1": 39.613803533173225,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "curve",
          "x0": 391.9305213616656,
          "y0": 307.50693844185884,
          "x1": 391.9305213616656,
          "y1": 302.1102429738795,
          "x2": 391.4663036606847,
          "y2": 301.5607503404415,
          "x3": 387.52854891024776,
          "y3": 302.1724834689338,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "curve",
          "x0": 391.9305213616656,
          "y0": 313.50326673961365,
          "x1": 391.9305213616656,
          "y1": 318.89996220759303,
          "x2": 391.73797568799324,
          "y2": 320.1062548143679,
          "x3": 386.40600092660657,
          "y3": 323.0130094996308,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "curve",
          "x0": 391.9305213616656,
          "y0": 307.50693844185884,
          "x1": 391.9305213616656,
          "y1": 302.1102429738795,
          "x2": 388.78244900534435,
          "y2": 299.261987032446,
          "x3": 387.3106825274218,
          "y3": 296.3703958529409,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "curve",
          "x0": 391.9305213616656,
          "y0": 313.50326673961365,
          "x1": 391.9305213616656,
          "y1": 318.30032937781755,
          "x2": 391.2737213883288,
          "y2": 329.3902428471527,
          "x3": 398.70772362490266,
          "y3": 329.46717582258054,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "curve",
          "x0": 391.9305213616656,
          "y0": 307.50693844185884,
          "x1": 391.9305213616656,
          "y1": 302.709875803655,
          "x2": 390.61699461235884,
          "y2": 290.963089163616,
          "x3": 398.77435319941424,
          "y3": 289.39911274215046,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "line",
          "x0": 391.9305213616656,
          "y0": 313.50326673961365,
          "x1": 391.9305213616656,
          "y1": 310.50510259073627,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C10:0)",
          "type": "line",
          "x0": 391.9305213616656,
          "y0": 307.50693844185884,
          "x1": 391.9305213616656,
          "y1": 310.50510259073627,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 430.4620910891079,
          "y0": 371.8625026185657,
          "x1": 430.4620910891079,
          "y1": 374.8606667674431,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 430.4620910891079,
          "y0": 377.8588309163205,
          "x1": 430.4620910891079,
          "y1": 383.25552638429986,
          "x2": 431.9069339146619,
          "y2": 385.2289273963539,
          "x3": 435.64256946911536,
          "y3": 386.2881177965886,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 430.4620910891079,
          "y0": 371.8625026185657,
          "x1": 431.11823228614253,
          "y1": 358.09832334895617,
          "x2": 430.2434139554465,
          "y2": 345.80987619373917,
          "x3": 405.38553597043364,
          "y3": 332.10078698807155,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 430.4620910891079,
          "y0": 377.8588309163205,
          "x1": 430.4620910891079,
          "y1": 374.8606667674431,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 430.4620910891079,
          "y0": 371.8625026185657,
          "x1": 430.4620910891079,
          "y1": 366.46580715058633,
          "x2": 430.59468811927616,
          "y2": 364.9297604058551,
          "x3": 434.539535178518,
          "y3": 360.2620383006704,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 430.4620910891079,
          "y0": 377.8588309163205,
          "x1": 430.4620910891079,
          "y1": 383.25552638429986,
          "x2": 430.98559865729084,
          "y2": 389.16584777592846,
          "x3": 435.95881706889674,
          "y3": 392.42619283896863,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 430.4620910891079,
          "y0": 377.8588309163205,
          "x1": 430.4620910891079,
          "y1": 382.65589355452437,
          "x2": 430.6808048214528,
          "y2": 397.13155123055697,
          "x3": 430.6759833936099,
          "y3": 402.7719257282763,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 336.16233370854377,
          "y0": 365.34787450438694,
          "x1": 336.16233370854377,
          "y1": 359.9511790364076,
          "x2": 336.348950395496,
          "y2": 357.1029230949741,
          "x3": 337.9573354165631,
          "y3": 354.3616738006687,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 336.16233370854377,
          "y0": 365.34787450438694,
          "x1": 336.16233370854377,
          "y1": 360.5508118661831,
          "x2": 329.91040020551844,
          "y2": 346.4910616289669,
          "x3": 308.3304662636525,
          "y3": 335.10623285214035,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 336.16233370854377,
          "y0": 371.34420280214175,
          "x1": 336.16233370854377,
          "y1": 376.7408982701211,
          "x2": 335.6466216599374,
          "y2": 386.1701830762341,
          "x3": 341.9514753451115,
          "y3": 390.41684340727903,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 336.16233370854377,
          "y0": 371.34420280214175,
          "x1": 336.16233370854377,
          "y1": 376.1412654403456,
          "x2": 335.83510487974604,
          "y2": 403.9708311444238,
          "x3": 335.83832982007357,
          "y3": 410.53036151395133,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 336.16233370854377,
          "y0": 365.34787450438694,
          "x1": 336.16233370854377,
          "y1": 368.3460386532643,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 336.16233370854377,
          "y0": 371.34420280214175,
          "x1": 336.16233370854377,
          "y1": 368.3460386532643,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 336.16233370854377,
          "y0": 371.34420280214175,
          "x1": 336.16233370854377,
          "y1": 376.7408982701211,
          "x2": 339.31040606486505,
          "y2": 379.5891542115546,
          "x3": 340.78217254278763,
          "y3": 382.4807453910597,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "line",
          "x0": 402.43906474427087,
          "y0": 369.9694723153853,
          "x1": 402.43906474427087,
          "y1": 366.9713081665079,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "line",
          "x0": 402.43906474427087,
          "y0": 363.9731440176305,
          "x1": 402.43906474427087,
          "y1": 366.9713081665079,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "curve",
          "x0": 402.43906474427087,
          "y0": 369.9694723153853,
          "x1": 402.43906474427087,
          "y1": 374.7665349535892,
          "x2": 405.3946280256032,
          "y2": 403.69940456919153,
          "x3": 427.1741907769436,
          "y3": 404.62602086432537,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "curve",
          "x0": 402.43906474427087,
          "y0": 363.9731440176305,
          "x1": 402.43906474427087,
          "y1": 358.57644854965116,
          "x2": 398.9625558025977,
          "y2": 355.3998292202327,
          "x3": 397.4733890825548,
          "y3": 352.46700841901446,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "curve",
          "x0": 402.43906474427087,
          "y0": 369.9694723153853,
          "x1": 402.43906474427087,
          "y1": 375.3661677833647,
          "x2": 402.2465190705985,
          "y2": 377.55769694882827,
          "x3": 399.19771342761226,
          "y3": 379.5501941276848,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "curve",
          "x0": 402.43906474427087,
          "y0": 363.9731440176305,
          "x1": 402.43906474427087,
          "y1": 359.17608137942665,
          "x2": 401.78230136961747,
          "y2": 337.90602451415464,
          "x3": 401.7916755744309,
          "y3": 331.8943663023071,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "curve",
          "x0": 402.43906474427087,
          "y0": 369.9694723153853,
          "x1": 402.43906474427087,
          "y1": 375.3661677833647,
          "x2": 402.9600104046117,
          "y2": 381.16998700613055,
          "x3": 399.43142100414616,
          "y3": 387.36315419607314,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C10:0)",
          "type": "curve",
          "x0": 402.43906474427087,
          "y0": 363.9731440176305,
          "x1": 402.43906474427087,
          "y1": 358.57644854965116,
          "x2": 402.9600104046117,
          "y2": 359.99728263885675,
          "x3": 397.908152334051,
          "y3": 358.49306392745706,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 370.55835053911034,
          "x1": 772.956647213966,
          "y1": 365.7612879009065,
          "x2": 772.956647213966,
          "y2": 347.8308609011748,
          "x3": 772.956647213966,
          "y3": 341.98578003586164,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 376.55467883686515,
          "x1": 772.956647213966,
          "y1": 381.9513743048445,
          "x2": 773.4028583626857,
          "y2": 394.2755417751165,
          "x3": 771.3343303693354,
          "y3": 397.6899887580235,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 370.55835053911034,
          "x1": 772.956647213966,
          "y1": 365.161655071131,
          "x2": 770.2230915464899,
          "y2": 358.06560953283093,
          "x3": 766.5164948581636,
          "y3": 355.2613246186266,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 376.55467883686515,
          "x1": 772.956647213966,
          "y1": 381.351741475069,
          "x2": 775.5707447786355,
          "y2": 428.0368025019627,
          "x3": 793.2843807550773,
          "y3": 430.4757395066963,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 370.55835053911034,
          "x1": 772.956647213966,
          "y1": 365.161655071131,
          "x2": 771.4423400872088,
          "y2": 364.92742349699995,
          "x3": 766.1737020394664,
          "y3": 361.73801767737314,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 370.55835053911034,
          "x1": 772.956647213966,
          "y1": 373.5565146879878,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "curve",
          "x0": 772.956647213966,
          "y0": 376.55467883686515,
          "x1": 772.956647213966,
          "y1": 381.9513743048445,
          "x2": 772.8370427164253,
          "y2": 383.165865016714,
          "x3": 768.8491939518996,
          "y3": 387.01809743723385,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C18:0)",
          "type": "line",
          "x0": 772.956647213966,
          "y0": 376.55467883686515,
          "x1": 772.956647213966,
          "y1": 373.5565146879878,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "line",
          "x0": 574.9983239153318,
          "y0": 309.94544035613256,
          "x1": 574.9983239153318,
          "y1": 312.94360450501,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "curve",
          "x0": 574.9983239153318,
          "y0": 309.94544035613256,
          "x1": 574.9983239153318,
          "y1": 305.1483777179287,
          "x2": 574.5886382527032,
          "y2": 290.95350514138573,
          "x3": 584.8390337183737,
          "y3": 290.2734167663524,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "curve",
          "x0": 574.9983239153318,
          "y0": 315.94176865388744,
          "x1": 574.9983239153318,
          "y1": 321.33846412186676,
          "x2": 574.4594449000964,
          "y2": 323.36742193541005,
          "x3": 570.2192055590166,
          "y3": 326.68519865298,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "curve",
          "x0": 574.9983239153318,
          "y0": 309.94544035613256,
          "x1": 574.9983239153318,
          "y1": 304.54874488815324,
          "x2": 573.2303879122107,
          "y2": 302.51978707460995,
          "x3": 569.4417433559074,
          "y3": 300.2904845070757,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "line",
          "x0": 574.9983239153318,
          "y0": 315.94176865388744,
          "x1": 574.9983239153318,
          "y1": 312.94360450501,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "curve",
          "x0": 574.9983239153318,
          "y0": 315.94176865388744,
          "x1": 574.9983239153318,
          "y1": 320.7388312920913,
          "x2": 575.8176952405888,
          "y2": 332.4755166954958,
          "x3": 584.8939869743934,
          "y3": 333.75164886830436,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C14:0)",
          "type": "curve",
          "x0": 574.9983239153318,
          "y0": 309.94544035613256,
          "x1": 574.9983239153318,
          "y1": 304.54874488815324,
          "x2": 571.4405658963818,
          "y2": 298.4232232377918,
          "x3": 569.7501542584574,
          "y3": 295.30130047632935,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 368.55789579741315,
          "x1": 494.3114363115296,
          "y1": 373.9545912653925,
          "x2": 492.875816354207,
          "y2": 380.4043772511916,
          "x3": 488.7040375162323,
          "y3": 385.9501503448843,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 368.55789579741315,
          "x1": 494.3114363115296,
          "y1": 373.354958435617,
          "x2": 493.0019354174032,
          "y2": 415.20225908830156,
          "x3": 516.8840300618941,
          "y3": 415.0145296275275,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 362.56156749965834,
          "x1": 494.3114363115296,
          "y1": 357.16487203167895,
          "x2": 492.2209927097769,
          "y2": 348.7506883099564,
          "x3": 487.6266353153097,
          "y3": 348.0139303556074,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 368.55789579741315,
          "x1": 494.3114363115296,
          "y1": 373.9545912653925,
          "x2": 494.76485740089043,
          "y2": 391.53623281176965,
          "x3": 490.0111044752149,
          "y3": 395.2691894518228,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 362.56156749965834,
          "x1": 494.3114363115296,
          "y1": 357.16487203167895,
          "x2": 493.1278348884986,
          "y2": 353.66186564318224,
          "x3": 487.88943343754676,
          "y3": 353.89688673093565,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 362.56156749965834,
          "x1": 494.3114363115296,
          "y1": 357.76450486145444,
          "x2": 494.3114363115296,
          "y2": 343.57702521897,
          "x3": 494.3114363115296,
          "y3": 337.95561268755284,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 362.56156749965834,
          "x1": 494.3114363115296,
          "y1": 365.5597316485357,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 368.55789579741315,
          "x1": 494.3114363115296,
          "y1": 365.5597316485357,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "curve",
          "x0": 480.3827825584599,
          "y0": 317.03807548835385,
          "x1": 480.3827825584599,
          "y1": 322.4347709563332,
          "x2": 480.6632016711149,
          "y2": 323.64435744461935,
          "x3": 476.8585981485952,
          "y3": 326.54714441477097,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "curve",
          "x0": 480.3827825584599,
          "y0": 311.04174719059904,
          "x1": 480.3827825584599,
          "y1": 306.2446845523952,
          "x2": 481.61183954634566,
          "y2": 290.8209013827003,
          "x3": 491.2733977385936,
          "y3": 290.77021843109793,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "curve",
          "x0": 480.3827825584599,
          "y0": 311.04174719059904,
          "x1": 480.3827825584599,
          "y1": 305.6450517226197,
          "x2": 478.87337965528604,
          "y2": 303.6160939090764,
          "x3": 475.8579937243477,
          "y3": 302.5132556224467,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "curve",
          "x0": 480.3827825584599,
          "y0": 311.04174719059904,
          "x1": 480.3827825584599,
          "y1": 305.6450517226197,
          "x2": 479.43418128191263,
          "y2": 302.7968689785531,
          "x3": 476.60657244296,
          "y3": 298.0635994749039,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "curve",
          "x0": 480.3827825584599,
          "y0": 317.03807548835385,
          "x1": 480.3827825584599,
          "y1": 321.83513812655775,
          "x2": 484.479419592645,
          "y2": 331.9333004715487,
          "x3": 491.5905510475311,
          "y3": 334.42952195008996,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "line",
          "x0": 480.3827825584599,
          "y0": 317.03807548835385,
          "x1": 480.3827825584599,
          "y1": 314.0399113394765,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADPH) (n-C12:0)",
          "type": "line",
          "x0": 480.3827825584599,
          "y0": 311.04174719059904,
          "x1": 480.3827825584599,
          "y1": 314.0399113394765,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 309.5353591897403,
          "x1": 688.8101451895113,
          "y1": 304.13866372176096,
          "x2": 691.9582175458327,
          "y2": 301.2904077803274,
          "x3": 693.4299840237551,
          "y3": 298.39881660082233,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 309.5353591897403,
          "x1": 688.8101451895113,
          "y1": 304.73829655153645,
          "x2": 689.2198308521399,
          "y2": 297.0981749849501,
          "x3": 689.2040425099592,
          "y3": 292.00206879612443,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "line",
          "x0": 688.8101451895113,
          "y0": 309.5353591897403,
          "x1": 688.8101451895113,
          "y1": 312.5335233386177,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "line",
          "x0": 688.8101451895113,
          "y0": 315.5316874874951,
          "x1": 688.8101451895113,
          "y1": 312.5335233386177,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 315.5316874874951,
          "x1": 688.8101451895113,
          "y1": 320.328750125699,
          "x2": 688.8101451895113,
          "y2": 327.1495735643951,
          "x3": 688.8101451895113,
          "y3": 332.163344926529,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 315.5316874874951,
          "x1": 688.8101451895113,
          "y1": 320.9283829554745,
          "x2": 691.9582175458327,
          "y2": 323.776638896908,
          "x3": 693.4299840237551,
          "y3": 326.6682300764131,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 309.5353591897403,
          "x1": 688.8101451895113,
          "y1": 304.13866372176096,
          "x2": 689.5831093841438,
          "y2": 304.88461808800145,
          "x3": 695.4048397517176,
          "y3": 302.71072974894673,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 613.7962222622976,
          "y0": 368.33373558975023,
          "x1": 613.7962222622976,
          "y1": 362.9370401217709,
          "x2": 613.9206577860548,
          "y2": 360.4160496078186,
          "x3": 617.491247841304,
          "y3": 357.46910880725386,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 613.7962222622976,
          "y0": 374.33006388750505,
          "x1": 613.7962222622976,
          "y1": 371.33189973862767,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "line",
          "x0": 613.7962222622976,
          "y0": 368.33373558975023,
          "x1": 613.7962222622976,
          "y1": 371.33189973862767,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 613.7962222622976,
          "y0": 374.33006388750505,
          "x1": 613.7962222622976,
          "y1": 379.72675935548443,
          "x2": 614.9808484484655,
          "y2": 383.2295461518804,
          "x3": 619.9091187322098,
          "y3": 382.39321261488857,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 613.7962222622976,
          "y0": 368.33373558975023,
          "x1": 613.7962222622976,
          "y1": 363.5366729515464,
          "x2": 613.4689568348165,
          "y2": 348.6983955198122,
          "x3": 591.9882478140244,
          "y3": 336.8897211334743,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 613.7962222622976,
          "y0": 374.33006388750505,
          "x1": 613.7962222622976,
          "y1": 379.12712652570895,
          "x2": 614.1234876897789,
          "y2": 389.874915502079,
          "x3": 614.1138912659509,
          "y3": 395.2457308083764,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "name": "Fatty-acyl-ACP hydrolase",
          "type": "curve",
          "x0": 613.7962222622976,
          "y0": 374.33006388750505,
          "x1": 613.7962222622976,
          "y1": 379.72675935548443,
          "x2": 614.2479232135361,
          "y2": 385.8474499796294,
          "x3": 620.3666243633267,
          "y3": 389.20853875150857,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 265.24998682954765,
          "x1": 494.3114363115296,
          "y1": 260.4529241913438,
          "x2": 494.3114363115296,
          "y2": 253.6321007526477,
          "x3": 494.3114363115296,
          "y3": 248.61832939051374,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 271.24631512730247,
          "x1": 494.3114363115296,
          "y1": 276.0433777655063,
          "x2": 494.3114363115296,
          "y2": 282.4545155415738,
          "x3": 494.3114363115296,
          "y3": 287.4258731427135,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)",
          "type": "curve",
          "x0": 494.3114363115296,
          "y0": 271.24631512730247,
          "x1": 494.3114363115296,
          "y1": 276.6430105952818,
          "x2": 497.45950866785086,
          "y2": 279.49126653671533,
          "x3": 498.9312751457733,
          "y3": 282.3828577162204,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 271.24631512730247,
          "x1": 494.3114363115296,
          "y1": 268.24815097842503,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "name": "3-hydroxyacyl-[acyl-carrier-protein] dehydratase (n-C12:0)",
          "type": "line",
          "x0": 494.3114363115296,
          "y0": 265.24998682954765,
          "x1": 494.3114363115296,
          "y1": 268.24815097842503,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "line",
          "x0": 401.78230136961747,
          "y0": 307.8353750272107,
          "x1": 401.78230136961747,
          "y1": 310.83353917608815,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "line",
          "x0": 401.78230136961747,
          "y0": 313.83170332496553,
          "x1": 401.78230136961747,
          "y1": 310.83353917608815,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 307.8353750272107,
          "x1": 401.78230136961747,
          "y1": 303.0383123890069,
          "x2": 401.78230136961747,
          "y2": 296.2174889503108,
          "x3": 401.7823013696176,
          "y3": 291.2037175881768,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 313.83170332496553,
          "x1": 401.78230136961747,
          "y1": 318.6287659631694,
          "x2": 401.78230136961747,
          "y2": 322.16566273254824,
          "x3": 401.7823013696174,
          "y3": 326.80770354097007,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 307.8353750272107,
          "x1": 401.78230136961747,
          "y1": 302.4386795592314,
          "x2": 404.93037372593886,
          "y2": 299.59042361779785,
          "x3": 406.40214020386134,
          "y3": 296.69883243829275,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 307.8353750272107,
          "x1": 401.78230136961747,
          "y1": 302.4386795592314,
          "x2": 403.56011901727214,
          "y2": 302.2174771164114,
          "x3": 408.49775349145114,
          "y3": 300.914578847121,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "name": "Enoyl-[acyl-carrier-protein] reductase (NADH) (n-C10:0)",
          "type": "curve",
          "x0": 401.78230136961747,
          "y0": 313.83170332496553,
          "x1": 401.78230136961747,
          "y1": 319.22839879294486,
          "x2": 402.3032104312749,
          "y2": 320.1062548143679,
          "x3": 405.752140055454,
          "y3": 321.7658274571493,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "curve",
          "x0": 688.4830993541309,
          "y0": 366.2827890492031,
          "x1": 688.4830993541309,
          "y1": 361.48572641099923,
          "x2": 688.8101451895113,
          "y2": 342.8899353460015,
          "x3": 688.804666122149,
          "y3": 337.00937146169974,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "curve",
          "x0": 688.4830993541309,
          "y0": 366.2827890492031,
          "x1": 688.4830993541309,
          "y1": 360.88609358122375,
          "x2": 686.1543983230667,
          "y2": 360.4958052208279,
          "x3": 682.6325982882857,
          "y3": 358.5084151183612,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "line",
          "x0": 688.4830993541309,
          "y0": 372.2791173469579,
          "x1": 688.4830993541309,
          "y1": 369.28095319808045,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "curve",
          "x0": 688.4830993541309,
          "y0": 372.2791173469579,
          "x1": 688.4830993541309,
          "y1": 377.6758128149372,
          "x2": 688.3602741724459,
          "y2": 381.17816042713173,
          "x3": 685.2152512681279,
          "y3": 383.4386702736883,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "line",
          "x0": 688.4830993541309,
          "y0": 366.2827890492031,
          "x1": 688.4830993541309,
          "y1": 369.28095319808045,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "curve",
          "x0": 688.4830993541309,
          "y0": 372.2791173469579,
          "x1": 688.4830993541309,
          "y1": 377.6758128149372,
          "x2": 687.9516864703211,
          "y2": 388.7010930092856,
          "x3": 685.9512871428539,
          "y3": 392.04975753460565,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "curve",
          "x0": 688.4830993541309,
          "y0": 366.2827890492031,
          "x1": 688.4830993541309,
          "y1": 360.88609358122375,
          "x2": 689.4241247032023,
          "y2": 358.86365033333595,
          "x3": 684.2921549737622,
          "y3": 352.39591837550813,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "name": "Acyl-[acyl-carrier-protein] synthetase  (n-C16:0)",
          "type": "curve",
          "x0": 688.4830993541309,
          "y0": 372.2791173469579,
          "x1": 688.4830993541309,
          "y1": 377.07617998516173,
          "x2": 690.4455939585145,
          "y2": 409.0822410507303,
          "x3": 712.8234468580184,
          "y3": 408.98102838115676,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 219.590434723418,
          "x1": 688.8101451895113,
          "y1": 214.79337208521414,
          "x2": 688.8101451895113,
          "y2": 207.97254864651805,
          "x3": 688.8101451895113,
          "y3": 202.9587772843841,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 225.58676302117283,
          "x1": 688.8101451895113,
          "y1": 230.38382565937667,
          "x2": 688.8101451895113,
          "y2": 237.2046490980728,
          "x3": 688.8101451895113,
          "y3": 242.2184204602069,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 219.590434723418,
          "x1": 688.8101451895113,
          "y1": 214.19373925543866,
          "x2": 685.6620728331901,
          "y2": 211.34548331400512,
          "x3": 684.1903063552675,
          "y3": 208.45389213450002,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 219.590434723418,
          "x1": 688.8101451895113,
          "y1": 214.19373925543866,
          "x2": 691.9582175458327,
          "y2": 211.34548331400512,
          "x3": 693.4299840237551,
          "y3": 208.45389213450002,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "line",
          "x0": 688.8101451895113,
          "y0": 219.590434723418,
          "x1": 688.8101451895113,
          "y1": 222.58859887229542,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "line",
          "x0": 688.8101451895113,
          "y0": 225.58676302117283,
          "x1": 688.8101451895113,
          "y1": 222.58859887229542,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "name": "3-oxoacyl-[acyl-carrier-protein] reductase (n-C16:0)",
          "type": "curve",
          "x0": 688.8101451895113,
          "y0": 225.58676302117283,
          "x1": 688.8101451895113,
          "y1": 230.98345848915216,
          "x2": 691.9582175458327,
          "y2": 233.8317144305857,
          "x3": 693.4299840237551,
          "y3": 236.72330561009082,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        }
      ]
    },
    {
      "name": "reactionArrowHeadCoordinates",
      "values": [
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "start": false,
          "x": 772.956647213966,
          "y": 247.15934601538015,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "start": false,
          "x": 777.5764860482099,
          "y": 213.39481768967332,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "start": false,
          "x": 768.3368083797222,
          "y": 213.39481768967332,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "start": false,
          "x": 777.5764860482099,
          "y": 241.66423116526397,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "start": false,
          "x": 772.956647213966,
          "y": 207.8997028395574,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "start": false,
          "x": 486.6572303683089,
          "y": 180.54272646988332,
          "angle": 164.08652294048926,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "start": false,
          "x": 494.2045508177663,
          "y": 196.35488533062457,
          "angle": 177.03597466236914,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "start": false,
          "x": 494.30602821008625,
          "y": 173.13335370680159,
          "angle": 93.10788304642853,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "start": false,
          "x": 403.9899494394967,
          "y": 329.99935496821564,
          "angle": 267.0945679144134,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "start": false,
          "x": 465.57297445453963,
          "y": 163.31500133331133,
          "angle": 251.74150284349523,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "start": false,
          "x": 227.96799596251728,
          "y": 153.6420696825917,
          "angle": 268.4001800515882,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "start": false,
          "x": 308.88305283028325,
          "y": 279.70293175439946,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "start": false,
          "x": 304.2632139960394,
          "y": 245.93840342869285,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "start": false,
          "x": 304.2632139960394,
          "y": 285.19804660451564,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "start": false,
          "x": 401.7823013696176,
          "y": 246.23125535501566,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "start": false,
          "x": 406.40214020386145,
          "y": 279.99578368072235,
          "angle": 148.19796938515074,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "start": false,
          "x": 401.7823013696176,
          "y": 285.4908985308383,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "start": false,
          "x": 222.39356021797653,
          "y": 246.6003546040597,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "start": false,
          "x": 222.39356021797653,
          "y": 285.85999777988263,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "start": false,
          "x": 227.0133990522203,
          "y": 280.36488292976645,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "start": false,
          "x": 227.0133990522203,
          "y": 235.39242069660529,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "start": false,
          "x": 227.0133990522203,
          "y": 207.12300722101475,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "start": false,
          "x": 217.77372138373264,
          "y": 207.12300722101475,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "start": false,
          "x": 222.39356021797653,
          "y": 201.6278923708987,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "start": false,
          "x": 222.39356021797653,
          "y": 240.88753554672147,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "start": false,
          "x": 300.87238698393634,
          "y": 177.7876888113103,
          "angle": 96.04819658724061,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "start": false,
          "x": 226.27354460640967,
          "y": 153.79206305044653,
          "angle": -89.56422957224967,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "start": false,
          "x": 295.20292546317955,
          "y": 185.08349921744164,
          "angle": 159.6522578169425,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "start": false,
          "x": 302.74889365552946,
          "y": 194.4516357877693,
          "angle": 156.583120567257,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "start": false,
          "x": 225.08983382502885,
          "y": 333.8733967469189,
          "angle": 265.7079378617681,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "start": false,
          "x": 272.83079471825056,
          "y": 167.6879732814456,
          "angle": -85.74260485976305,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "start": false,
          "x": 93.41104853156426,
          "y": 231.11190516979295,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "start": false,
          "x": 98.0308873658081,
          "y": 236.60702001990887,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "start": false,
          "x": 93.39483753901072,
          "y": 268.85529219229556,
          "angle": 179.8285047761025,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "start": false,
          "x": 88.79120969732043,
          "y": 236.60702001990887,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "start": false,
          "x": 98.0308873658081,
          "y": 264.87643349549967,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "start": false,
          "x": 588.1075331457773,
          "y": 241.80920349870888,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "start": false,
          "x": 583.4876943115335,
          "y": 208.04467517300205,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "start": false,
          "x": 588.1075331457773,
          "y": 202.54956032288612,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "start": false,
          "x": 592.7273719800211,
          "y": 236.31408864859284,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "start": false,
          "x": 592.7273719800211,
          "y": 208.04467517300205,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "start": false,
          "x": 228.009069451625,
          "y": 153.66637284067303,
          "angle": 268.6468726263662,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "start": false,
          "x": 585.2318243996647,
          "y": 169.73157312720298,
          "angle": 94.35723353853923,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "start": false,
          "x": 496.4126766679896,
          "y": 335.62171354179594,
          "angle": 265.7022094485171,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "start": false,
          "x": 552.9659813063598,
          "y": 160.66937064616516,
          "angle": 250.15556851941574,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "start": false,
          "x": 587.7393694989703,
          "y": 195.51557521081702,
          "angle": 173.4333868730498,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "start": false,
          "x": 579.780120845219,
          "y": 177.1915042107987,
          "angle": 157.96129476823882,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "start": false,
          "x": 304.2632139960394,
          "y": 290.910865661854,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "start": false,
          "x": 311.4210137982656,
          "y": 299.8171750879475,
          "angle": 82.71988428301039,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "start": false,
          "x": 304.56062813575045,
          "y": 330.1710167291518,
          "angle": 179.49483849502383,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "start": false,
          "x": 308.88305283028325,
          "y": 296.4059805119701,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "start": false,
          "x": 308.88305283028325,
          "y": 324.6753939875606,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "start": false,
          "x": 89.34931648968664,
          "y": 126.65272466031725,
          "angle": 211.80203061484912,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "start": false,
          "x": 89.34931648968664,
          "y": 98.38331118472645,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "start": false,
          "x": 162.2317771632547,
          "y": 10.06814278275892,
          "angle": 40.422713852602,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "start": false,
          "x": 93.69389879886198,
          "y": 132.55806822980833,
          "angle": 182.55012732311084,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "start": false,
          "x": 98.58899415817432,
          "y": 126.65272466031725,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "start": false,
          "x": 217.13589751408753,
          "y": 148.91735502939443,
          "angle": 132.60341385605486,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "start": false,
          "x": 777.5764860482099,
          "y": 331.60915563158625,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "start": false,
          "x": 779.4939253349814,
          "y": 306.7701638218066,
          "angle": 72.5205331997237,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "start": false,
          "x": 777.5764860482099,
          "y": 303.3397421559956,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "start": false,
          "x": 773.0494148338878,
          "y": 336.17699036105864,
          "angle": 181.10108000273095,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "start": false,
          "x": 773.0493931868177,
          "y": 297.84419483038687,
          "angle": -1.3626750418633264,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "start": false,
          "x": 769.8718934413395,
          "y": 295.75080510128356,
          "angle": 69.42516976262158,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "start": false,
          "x": 770.4375299299202,
          "y": 338.4759816582142,
          "angle": 125.18445943725729,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "start": false,
          "x": 756.4367441294104,
          "y": 301.5625143445312,
          "angle": -29.783527602233434,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "start": false,
          "x": 756.1970266964123,
          "y": 330.9510887424813,
          "angle": 225.3911957968016,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "start": false,
          "x": 756.8414815467274,
          "y": 307.585602537504,
          "angle": -61.00130579997682,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "start": false,
          "x": 288.88420037032756,
          "y": 302.41443841596055,
          "angle": -73.88144148365194,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "start": false,
          "x": 301.16256894973986,
          "y": 288.58797549423986,
          "angle": 72.92303910873636,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "start": false,
          "x": 301.70606653749434,
          "y": 332.13678630972817,
          "angle": 114.0285636331198,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "start": false,
          "x": 288.7813982930366,
          "y": 297.64740785486464,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "start": false,
          "x": 288.8925423594884,
          "y": 325.59871805871035,
          "angle": 223.91339858711888,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "start": false,
          "x": 200.8217526935551,
          "y": 300.74254665813197,
          "angle": -70.9741509299975,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "start": false,
          "x": 202.02759508055885,
          "y": 325.6886235760901,
          "angle": 219.65490972354047,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "start": false,
          "x": 218.51185170335268,
          "y": 333.6988184286867,
          "angle": 98.9987599471452,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "start": false,
          "x": 201.3256142614159,
          "y": 297.37821532569365,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "start": false,
          "x": 218.52937609594042,
          "y": 289.0833458647784,
          "angle": 80.04326581009309,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "start": false,
          "x": 308.88305283028325,
          "y": 206.46105604564764,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "start": false,
          "x": 308.88305283028325,
          "y": 234.7304695212384,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "start": false,
          "x": 304.2632139960394,
          "y": 200.96594119553157,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "start": false,
          "x": 299.6433751617956,
          "y": 206.46105604564764,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "start": false,
          "x": 304.2632139960394,
          "y": 240.22558437135447,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "start": false,
          "x": 688.5490684115476,
          "y": 196.07154432901697,
          "angle": 174.45245905690388,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "start": false,
          "x": 680.4641657003455,
          "y": 178.50210087664206,
          "angle": 156.80163546972318,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "start": false,
          "x": 685.7637748921658,
          "y": 170.93336347655185,
          "angle": 93.19757424002721,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "start": false,
          "x": 227.8986200334386,
          "y": 153.61154430272435,
          "angle": 268.06319291053853,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "start": false,
          "x": 651.7607135236105,
          "y": 164.27979572666973,
          "angle": 259.61232134992326,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "start": false,
          "x": 590.2937512000528,
          "y": 334.542263100844,
          "angle": 266.28938341101224,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "start": false,
          "x": 501.0202443052959,
          "y": 304.3528982606922,
          "angle": 77.2925174846348,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "start": false,
          "x": 494.3114363115296,
          "y": 293.1397516631876,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "start": false,
          "x": 498.9312751457733,
          "y": 299.0859064737908,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "start": false,
          "x": 498.9312751457733,
          "y": 327.35531994938145,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "start": false,
          "x": 494.3114363115296,
          "y": 332.85043479949763,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "start": false,
          "x": 685.1162706777817,
          "y": 334.61693065749307,
          "angle": 101.27717078721147,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "start": false,
          "x": 670.3566360714416,
          "y": 299.65060254640383,
          "angle": -49.374944952450676,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "start": false,
          "x": 685.6307638192961,
          "y": 289.90918962136726,
          "angle": 74.57078156994663,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "start": false,
          "x": 669.9201084723996,
          "y": 324.5696747435934,
          "angle": 217.16082284437522,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "start": false,
          "x": 671.5288772527214,
          "y": 293.3020338534959,
          "angle": -21.359992925280494,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "start": false,
          "x": 526.9691723572165,
          "y": 394.18908018282855,
          "angle": 123.91062890050233,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "start": false,
          "x": 528.1715718384102,
          "y": 389.40147051438794,
          "angle": 93.39655901800788,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "start": false,
          "x": 497.9417339845291,
          "y": 337.8574848944318,
          "angle": -57.63899712830718,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "start": false,
          "x": 520.0184187257674,
          "y": 413.2589317731555,
          "angle": 180.27618099080922,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "start": false,
          "x": 522.9496653379616,
          "y": 360.6876310918369,
          "angle": 31.90367077098125,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 222.43511546779007,
          "y": 105.10839345820435,
          "angle": 180.7656604384207,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 229.34658569748174,
          "y": 92.74036884507575,
          "angle": 143.37033615209015,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 215.3567866567526,
          "y": 68.90274904804991,
          "angle": -84.67451785334404,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 230.1444196388029,
          "y": 65.62069614134663,
          "angle": 72.02527635317091,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 170.28017160819672,
          "y": 9.179023356527008,
          "angle": -47.49565280274601,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 218.342729066666,
          "y": 93.09769118072705,
          "angle": 211.68995999362863,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "start": false,
          "x": 207.6364237395589,
          "y": 93.92150297221559,
          "angle": 240.7541156588847,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "start": false,
          "x": 764.1350961633456,
          "y": 189.19296380011593,
          "angle": 157.6507978146235,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "start": false,
          "x": 229.3284741646275,
          "y": 153.5199003669191,
          "angle": 267.7008907889268,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "start": false,
          "x": 748.664953977192,
          "y": 161.24237592938766,
          "angle": 16.109462371178196,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "start": false,
          "x": 772.4757749160249,
          "y": 201.5002523168948,
          "angle": 169.72494503988736,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "start": false,
          "x": 769.5462930490104,
          "y": 181.7035985611843,
          "angle": 94.04673658492835,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "start": false,
          "x": 691.3175560850905,
          "y": 334.93126514813025,
          "angle": 266.00979090351973,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "start": false,
          "x": 494.3114363115296,
          "y": 242.90551033317536,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "start": false,
          "x": 494.3114363115296,
          "y": 203.64586715735246,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "start": false,
          "x": 498.9312751457733,
          "y": 209.14098200746864,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "start": false,
          "x": 489.69159747728577,
          "y": 209.14098200746864,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "start": false,
          "x": 498.9312751457733,
          "y": 237.41039548305915,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "start": false,
          "x": 227.0133990522203,
          "y": 297.0679316873369,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "start": false,
          "x": 222.39356021797653,
          "y": 291.57281683722084,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "start": false,
          "x": 222.39356021797647,
          "y": 331.3185266091702,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "start": false,
          "x": 227.23471437673882,
          "y": 325.6435065064294,
          "angle": 136.67427645865115,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "start": false,
          "x": 228.4980416330816,
          "y": 301.14623728594404,
          "angle": 75.72112649859662,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "start": false,
          "x": 584.9576217814131,
          "y": 378.7318033709824,
          "angle": 220.4449231022844,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "start": false,
          "x": 581.6246626010148,
          "y": 345.76125037982683,
          "angle": -55.65198446604779,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "start": false,
          "x": 585.495380499253,
          "y": 390.9785982336817,
          "angle": 199.75926504726954,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "start": false,
          "x": 582.6689669253724,
          "y": 352.27923075430164,
          "angle": -62.75408092246957,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "start": false,
          "x": 588.2487872019243,
          "y": 337.07820560406833,
          "angle": -2.56943473504235,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "start": false,
          "x": 610.3988219698233,
          "y": 397.23338586493657,
          "angle": 101.00663640432569,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "start": false,
          "x": 588.1075331457773,
          "y": 331.75412796503105,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "start": false,
          "x": 592.7273719800211,
          "y": 297.98959963932435,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "start": false,
          "x": 588.1076032897331,
          "y": 292.49440410932453,
          "angle": 0.00011916124043409582,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "start": false,
          "x": 594.5911175630766,
          "y": 302.357610388536,
          "angle": 78.92846427514009,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "start": false,
          "x": 592.7273719800211,
          "y": 326.25901311491515,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "start": false,
          "x": 394.66766589920377,
          "y": 181.26522032978664,
          "angle": 153.7111336629549,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "start": false,
          "x": 307.227343148632,
          "y": 332.98906295183383,
          "angle": 267.6406875544968,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "start": false,
          "x": 364.46873704912525,
          "y": 164.86495028039445,
          "angle": 258.3048036922957,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "start": false,
          "x": 399.5515119940865,
          "y": 173.42177142391282,
          "angle": 90.10707243325763,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "start": false,
          "x": 227.99478123386322,
          "y": 153.637600365648,
          "angle": 268.38911176240407,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "start": false,
          "x": 401.426181604058,
          "y": 194.41895750820206,
          "angle": 172.71476625771746,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "start": false,
          "x": 689.2012912508052,
          "y": 286.28651481297595,
          "angle": 179.28995894232983,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "start": false,
          "x": 688.8101451895113,
          "y": 247.93123951754524,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "start": false,
          "x": 693.4299840237551,
          "y": 281.695767843252,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "start": false,
          "x": 93.41104853156426,
          "y": 180.4266238792934,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "start": false,
          "x": 93.45640051186425,
          "y": 141.85352295134433,
          "angle": 0.24258659574972796,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "start": false,
          "x": 88.79120969732043,
          "y": 174.93150902917736,
          "angle": 211.80203061484912,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "start": false,
          "x": 88.79120969732043,
          "y": 146.66209555358657,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "start": false,
          "x": 98.0308873658081,
          "y": 146.66209555358657,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "start": false,
          "x": 721.9867066399723,
          "y": 397.32846792853417,
          "angle": 143.9542871058518,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "start": false,
          "x": 721.2949208496727,
          "y": 353.8596893351809,
          "angle": 34.87712946096948,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "start": false,
          "x": 722.2371349452899,
          "y": 386.9024066147053,
          "angle": 130.10987215587753,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "start": false,
          "x": 716.3833026769443,
          "y": 405.5408290183082,
          "angle": 181.65296735760165,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "start": false,
          "x": 692.8014674188452,
          "y": 336.66626446686286,
          "angle": -65.74912016273953,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "start": false,
          "x": 401.7823013696176,
          "y": 240.51843629767728,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "start": false,
          "x": 406.40214020386134,
          "y": 206.75390797197045,
          "angle": 31.802030614848398,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "start": false,
          "x": 406.40214020386145,
          "y": 235.02332144756122,
          "angle": 148.19796938515074,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "start": false,
          "x": 397.16246253537366,
          "y": 206.75390797197045,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "start": false,
          "x": 401.7823013696174,
          "y": 201.25879312185452,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "start": false,
          "x": 88.79120969732043,
          "y": 219.9039712623385,
          "angle": 211.80203061484912,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "start": false,
          "x": 93.41104853156426,
          "y": 225.39908611245443,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "start": false,
          "x": 93.41104853156426,
          "y": 186.13944293663178,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "start": false,
          "x": 592.7273719800211,
          "y": 281.286550881754,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "start": false,
          "x": 588.1076032896893,
          "y": 286.7815850519999,
          "angle": 179.99988083746047,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "start": false,
          "x": 588.1075331457773,
          "y": 247.52202255604726,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "start": false,
          "x": 228.05075342763956,
          "y": 144.71960300416,
          "angle": 144.2829219236716,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "start": false,
          "x": 222.39356021797653,
          "y": 150.94261108039916,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "start": false,
          "x": 227.0133990522203,
          "y": 117.17808275469231,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "start": false,
          "x": 222.39356021797653,
          "y": 111.68296790457624,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "start": false,
          "x": 96.9974102661158,
          "y": 273.1608242573738,
          "angle": 267.99228531136794,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "start": false,
          "x": 227.0133990522203,
          "y": 190.41995846344412,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "start": false,
          "x": 222.39356021797653,
          "y": 195.91507331356033,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "start": false,
          "x": 217.77372138373264,
          "y": 190.41995846344412,
          "angle": 211.80203061484912,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "start": false,
          "x": 222.38365146401603,
          "y": 156.50654184631324,
          "angle": 0.4175583145525792,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "start": false,
          "x": 217.672526224531,
          "y": 162.05738755283215,
          "angle": -30.191963534350037,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "start": false,
          "x": 772.956647213966,
          "y": 252.8721650727184,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "start": false,
          "x": 777.5764860482099,
          "y": 286.6366933984252,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "start": false,
          "x": 772.956647213966,
          "y": 292.1318082485413,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "start": false,
          "x": 305.94383807116117,
          "y": 395.8215094303432,
          "angle": 178.81532875285228,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "start": false,
          "x": 297.7039354825548,
          "y": 355.99155483246346,
          "angle": -64.10805535730373,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "start": false,
          "x": 299.9537319975192,
          "y": 389.7198185843136,
          "angle": 211.80203061484912,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "start": false,
          "x": 296.37796536197123,
          "y": 361.9285327183657,
          "angle": -75.2999765589957,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "start": false,
          "x": 304.5207633328923,
          "y": 336.4955421893386,
          "angle": 0.7856085111278617,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "start": false,
          "x": 332.35498155688975,
          "y": 411.452288582342,
          "angle": 104.34134673825146,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "start": false,
          "x": 20.740245403489887,
          "y": 68.17413356952717,
          "angle": -1.0344268176254445e-05,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "start": false,
          "x": 216.97176790692396,
          "y": 149.0097124106577,
          "angle": 131.27352558010585,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "start": false,
          "x": 25.360093157778216,
          "y": 108.34159522736107,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "start": false,
          "x": 88.41487151755908,
          "y": 137.13845103104018,
          "angle": 89.800656708478,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "start": false,
          "x": 16.12041548929051,
          "y": 80.07218175177027,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "start": false,
          "x": 16.081302323108773,
          "y": 108.44026874755151,
          "angle": 212.61009239605997,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "start": false,
          "x": 159.52558855579457,
          "y": 6.096145282615329,
          "angle": 84.15161250717976,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "start": false,
          "x": 16.02217618060739,
          "y": 28.32769107801927,
          "angle": -68.50645499048355,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "start": false,
          "x": 16.74109256205433,
          "y": 53.74851027096862,
          "angle": 211.80203061484912,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "start": false,
          "x": 20.758742545883976,
          "y": 63.30915465334832,
          "angle": 180.79050757184905,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "start": false,
          "x": 387.52854891024776,
          "y": 302.1724834689338,
          "angle": 267.0590612057557,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "start": false,
          "x": 386.40600092660657,
          "y": 323.0130094996308,
          "angle": 237.9676139986091,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "start": false,
          "x": 387.3106825274218,
          "y": 296.3703958529409,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "start": false,
          "x": 398.70772362490266,
          "y": 329.46717582258054,
          "angle": 108.46964003045044,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "start": false,
          "x": 398.77435319941424,
          "y": 289.39911274215046,
          "angle": 63.97879634698221,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "start": false,
          "x": 435.64256946911536,
          "y": 386.2881177965886,
          "angle": 113.69069184417663,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "start": false,
          "x": 405.38553597043364,
          "y": 332.10078698807155,
          "angle": -59.314991721778256,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "start": false,
          "x": 434.539535178518,
          "y": 360.2620383006704,
          "angle": 37.45062433000435,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "start": false,
          "x": 435.95881706889674,
          "y": 392.42619283896863,
          "angle": 132.82637448755042,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "start": false,
          "x": 430.6759833936099,
          "y": 402.7719257282763,
          "angle": 179.77341860204916,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "start": false,
          "x": 337.9573354165631,
          "y": 354.3616738006687,
          "angle": 23.740393319218185,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "start": false,
          "x": 308.3304662636525,
          "y": 335.10623285214035,
          "angle": -60.02934191598189,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "start": false,
          "x": 341.9514753451115,
          "y": 390.41684340727903,
          "angle": 134.58979515892125,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "start": false,
          "x": 335.83832982007357,
          "y": 410.53036151395133,
          "angle": 180.2003537326753,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "start": false,
          "x": 340.78217254278763,
          "y": 382.4807453910597,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "start": false,
          "x": 427.1741907769436,
          "y": 404.62602086432537,
          "angle": 99.42771830332205,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "start": false,
          "x": 397.4733890825548,
          "y": 352.46700841901446,
          "angle": -32.029406547267044,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "start": false,
          "x": 399.19771342761226,
          "y": 379.5501941276848,
          "angle": 227.3774336587923,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "start": false,
          "x": 401.7916755744309,
          "y": 331.8943663023071,
          "angle": -0.5140049699379574,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "start": false,
          "x": 399.43142100414616,
          "y": 387.36315419607314,
          "angle": 204.49043353186886,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "start": false,
          "x": 397.908152334051,
          "y": 358.49306392745706,
          "angle": -76.04737368923094,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "start": false,
          "x": 772.956647213966,
          "y": 341.98578003586164,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "start": false,
          "x": 771.3343303693354,
          "y": 397.6899887580235,
          "angle": 198.618348864422,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "start": false,
          "x": 766.5164948581636,
          "y": 355.2613246186266,
          "angle": -43.8364709022006,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "start": false,
          "x": 793.2843807550773,
          "y": 430.4757395066963,
          "angle": 108.40386644321177,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "start": false,
          "x": 766.1737020394664,
          "y": 361.73801767737314,
          "angle": -59.31454053181159,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "start": false,
          "x": 768.8491939518996,
          "y": 387.01809743723385,
          "angle": 222.88852288991558,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "start": false,
          "x": 584.8390337183737,
          "y": 290.2734167663524,
          "angle": 72.98153314727526,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "start": false,
          "x": 570.2192055590166,
          "y": 326.68519865298,
          "angle": 227.61316384080533,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "start": false,
          "x": 569.4417433559074,
          "y": 300.2904845070757,
          "angle": -55.495608826976394,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "start": false,
          "x": 584.8939869743934,
          "y": 333.75164886830436,
          "angle": 110.51784494203251,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "start": false,
          "x": 569.7501542584574,
          "y": 295.30130047632935,
          "angle": -28.512656588127527,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "start": false,
          "x": 488.7040375162323,
          "y": 385.9501503448843,
          "angle": 212.73310527729444,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "start": false,
          "x": 516.8840300618941,
          "y": 415.0145296275275,
          "angle": 97.48564460845478,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "start": false,
          "x": 487.6266353153097,
          "y": 348.0139303556074,
          "angle": -61.30199174615922,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "start": false,
          "x": 490.0111044752149,
          "y": 395.2691894518228,
          "angle": 215.70634656521838,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "start": false,
          "x": 487.88943343754676,
          "y": 353.89688673093565,
          "angle": -81.01887791374162,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "start": false,
          "x": 494.3114363115296,
          "y": 337.95561268755284,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "start": false,
          "x": 476.8585981485952,
          "y": 326.54714441477097,
          "angle": 227.32425962638823,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "start": false,
          "x": 491.2733977385936,
          "y": 290.77021843109793,
          "angle": 75.05242814468613,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "start": false,
          "x": 475.8579937243477,
          "y": 302.5132556224467,
          "angle": -61.01282199787437,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "start": false,
          "x": 476.60657244296,
          "y": 298.0635994749039,
          "angle": -28.8514270488418,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "start": false,
          "x": 491.5905510475311,
          "y": 334.42952195008996,
          "angle": 119.31109281480704,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "start": false,
          "x": 693.4299840237551,
          "y": 298.39881660082233,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "start": false,
          "x": 689.2040425099592,
          "y": 292.00206879612443,
          "angle": 0.6284254211612392,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "start": false,
          "x": 688.8101451895113,
          "y": 332.163344926529,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "start": false,
          "x": 693.4299840237551,
          "y": 326.6682300764131,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "start": false,
          "x": 695.4048397517176,
          "y": 302.71072974894673,
          "angle": 70.91970738703009,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "start": false,
          "x": 617.491247841304,
          "y": 357.46910880725386,
          "angle": 43.40653772917649,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "start": false,
          "x": 619.9091187322098,
          "y": 382.39321261488857,
          "angle": 93.50746995740036,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "start": false,
          "x": 591.9882478140244,
          "y": 336.8897211334743,
          "angle": -58.129387610583166,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "start": false,
          "x": 614.1138912659509,
          "y": 395.2457308083764,
          "angle": 179.58795308488703,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "start": false,
          "x": 620.3666243633267,
          "y": 389.20853875150857,
          "angle": 127.61334348138664,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "start": false,
          "x": 494.3114363115296,
          "y": 248.61832939051374,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "start": false,
          "x": 494.3114363115296,
          "y": 287.4258731427135,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "start": false,
          "x": 498.9312751457733,
          "y": 282.3828577162204,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "start": false,
          "x": 401.7823013696176,
          "y": 291.2037175881768,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "start": false,
          "x": 401.7823013696174,
          "y": 326.80770354097007,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "start": false,
          "x": 406.40214020386134,
          "y": 296.69883243829275,
          "angle": 31.802030614848398,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "start": false,
          "x": 408.49775349145114,
          "y": 300.914578847121,
          "angle": 74.5395819960693,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "start": false,
          "x": 405.752140055454,
          "y": 321.7658274571493,
          "angle": 120.55606049042717,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "start": false,
          "x": 688.804666122149,
          "y": 337.00937146169974,
          "angle": 0.2832511869054315,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "start": false,
          "x": 682.6325982882857,
          "y": 358.5084151183612,
          "angle": -61.91582714537918,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "start": false,
          "x": 685.2152512681279,
          "y": 383.4386702736883,
          "angle": 222.8199932280211,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "start": false,
          "x": 685.9512871428539,
          "y": 392.04975753460565,
          "angle": 200.38853973912967,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "start": false,
          "x": 684.2921549737622,
          "y": 352.39591837550813,
          "angle": -34.93458616614086,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "start": false,
          "x": 712.8234468580184,
          "y": 408.98102838115676,
          "angle": 97.11858697460356,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "start": false,
          "x": 688.8101451895113,
          "y": 202.9587772843841,
          "angle": 0.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "start": false,
          "x": 688.8101451895113,
          "y": 242.2184204602069,
          "angle": 180.0,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "start": false,
          "x": 684.1903063552675,
          "y": 208.45389213450002,
          "angle": -31.8020306148491,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "start": false,
          "x": 693.4299840237551,
          "y": 208.45389213450002,
          "angle": 31.802030614849087,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "start": false,
          "x": 693.4299840237551,
          "y": 236.72330561009082,
          "angle": 148.1979693851509,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        }
      ]
    },
    {
      "name": "reactionLabels",
      "values": [
        {
          "id": "2076206",
          "biggId": "3OAR180",
          "x": 777.4538934372822,
          "y": 229.0286065019074,
          "reactionIds": [],
          "metaboliteIds": [
            "2077669",
            "2077644",
            "2077670",
            "2077667",
            "2077668"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076122",
          "biggId": "3OAS120",
          "x": 484.6788281865694,
          "y": 160.9744230387368,
          "reactionIds": [],
          "metaboliteIds": [
            "2077059",
            "2076702",
            "2077056",
            "2077048",
            "2077058",
            "2077057"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076077",
          "biggId": "3HAD80",
          "x": 308.7604602193555,
          "y": 267.0673070910429,
          "reactionIds": [],
          "metaboliteIds": [
            "2076764",
            "2076760",
            "2076765"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076120",
          "biggId": "3HAD100",
          "x": 406.27954759293357,
          "y": 267.3601590173657,
          "reactionIds": [],
          "metaboliteIds": [
            "2077043",
            "2077044",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076071",
          "biggId": "3HAD60",
          "x": 226.8908064412926,
          "y": 267.7292582664099,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2076722",
            "2076714"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076070",
          "biggId": "3OAR60",
          "x": 226.8908064412926,
          "y": 222.75679603324872,
          "reactionIds": [],
          "metaboliteIds": [
            "2076715",
            "2076714",
            "2076716",
            "2076717",
            "2076706"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076073",
          "biggId": "3OAS80",
          "x": 284.9658283486752,
          "y": 165.64929822536314,
          "reactionIds": [],
          "metaboliteIds": [
            "2076736",
            "2076702",
            "2076734",
            "2076735",
            "2076737",
            "2076729"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076098",
          "biggId": "EAR40x",
          "x": 97.90829475488039,
          "y": 252.24080883214296,
          "reactionIds": [],
          "metaboliteIds": [
            "2076891",
            "2076673",
            "2076893",
            "2076892",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076129",
          "biggId": "3OAR140",
          "x": 592.6047793690934,
          "y": 223.67846398523614,
          "reactionIds": [],
          "metaboliteIds": [
            "2077101",
            "2077105",
            "2077108",
            "2077107",
            "2077106"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076128",
          "biggId": "3OAS140",
          "x": 574.7708162335505,
          "y": 158.19421354540148,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2076702",
            "2077098",
            "2077101",
            "2077100",
            "2077097"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076101",
          "biggId": "EAR80x",
          "x": 308.7604602193555,
          "y": 313.90183714117893,
          "reactionIds": [],
          "metaboliteIds": [
            "2076912",
            "2076913",
            "2076765",
            "2076915",
            "2076914"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076100",
          "biggId": "KAS15",
          "x": 98.4664015472466,
          "y": 114.01709999696055,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2075382",
            "2076908",
            "2076906",
            "2076905"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076208",
          "biggId": "EAR180x",
          "x": 777.4538934372822,
          "y": 318.97353096822974,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077680",
            "2077674",
            "2077681",
            "2077682"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076209",
          "biggId": "EAR180y",
          "x": 737.5898022438184,
          "y": 318.97353096822974,
          "reactionIds": [],
          "metaboliteIds": [
            "2077679",
            "2077687",
            "2077674",
            "2077689",
            "2077688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076185",
          "biggId": "EAR80y",
          "x": 273.69182132202343,
          "y": 313.2811966670986,
          "reactionIds": [],
          "metaboliteIds": [
            "2077506",
            "2076912",
            "2077503",
            "2076765",
            "2077504"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076184",
          "biggId": "EAR60y",
          "x": 185.3050399805987,
          "y": 312.7016473022041,
          "reactionIds": [],
          "metaboliteIds": [
            "2076721",
            "2077498",
            "2076729",
            "2077497",
            "2077499"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076076",
          "biggId": "3OAR80",
          "x": 308.7604602193555,
          "y": 222.09484485788172,
          "reactionIds": [],
          "metaboliteIds": [
            "2076757",
            "2076760",
            "2076758",
            "2076759",
            "2076734"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076127",
          "biggId": "3OAS160",
          "x": 673.3502227818773,
          "y": 155.33837559358025,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077093",
            "2077092",
            "2077089",
            "2077117",
            "2077090"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076126",
          "biggId": "EAR120x",
          "x": 498.8086825348457,
          "y": 314.7196952860249,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077082",
            "2077083",
            "2077084",
            "2077078"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076212",
          "biggId": "EAR160y",
          "x": 650.702278420462,
          "y": 312.39400915727595,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077146",
            "2077708",
            "2077710",
            "2077709"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076200",
          "biggId": "FA120ACPHi",
          "x": 523.8554307435132,
          "y": 376.88109519205915,
          "reactionIds": [],
          "metaboliteIds": [
            "2077623",
            "2077085",
            "2077622",
            "2077621",
            "2077614"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076061",
          "biggId": "ACCOAC",
          "x": 228.49099431011496,
          "y": 80.40577165244765,
          "reactionIds": [],
          "metaboliteIds": [
            "2076652",
            "2075382",
            "2076657",
            "2076655",
            "2076653",
            "2076654",
            "2076656"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076203",
          "biggId": "3OAS180",
          "x": 760.2075862681168,
          "y": 168.8667387964988,
          "reactionIds": [],
          "metaboliteIds": [
            "2077645",
            "2076702",
            "2077146",
            "2077644",
            "2077646",
            "2077648"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076124",
          "biggId": "3OAR120",
          "x": 498.8086825348457,
          "y": 224.7747708197026,
          "reactionIds": [],
          "metaboliteIds": [
            "2077058",
            "2077071",
            "2077070",
            "2077073",
            "2077072"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076099",
          "biggId": "EAR60x",
          "x": 226.5804862042524,
          "y": 312.701720499571,
          "reactionIds": [],
          "metaboliteIds": [
            "2076899",
            "2076721",
            "2076898",
            "2076729",
            "2076897"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076201",
          "biggId": "AACPS1",
          "x": 566.0978900851865,
          "y": 364.48633558991395,
          "reactionIds": [],
          "metaboliteIds": [
            "2077629",
            "2077628",
            "2077631",
            "2077632",
            "2077117",
            "2077630"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076131",
          "biggId": "EAR140x",
          "x": 592.6047793690934,
          "y": 313.62338845155847,
          "reactionIds": [],
          "metaboliteIds": [
            "2077118",
            "2077119",
            "2077120",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076118",
          "biggId": "3OAS100",
          "x": 387.51190320367834,
          "y": 161.84405454233635,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2077032",
            "2077031",
            "2076912",
            "2077029",
            "2077028"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076133",
          "biggId": "3HAD160",
          "x": 693.3073914128274,
          "y": 269.06014317989525,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077127",
            "2077131"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076066",
          "biggId": "3OAR40",
          "x": 97.90829475488039,
          "y": 162.29588436582065,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076680",
            "2076687",
            "2076686",
            "2076688"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076153",
          "biggId": "FA160ACPHi",
          "x": 721.4364075449588,
          "y": 374.0507864157916,
          "reactionIds": [],
          "metaboliteIds": [
            "2077277",
            "2077146",
            "2077278",
            "2077276",
            "2077275"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076119",
          "biggId": "3OAR100",
          "x": 406.27954759293357,
          "y": 222.38769678420454,
          "reactionIds": [],
          "metaboliteIds": [
            "2077039",
            "2077037",
            "2077036",
            "2077028",
            "2077038"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076065",
          "biggId": "3HAD40",
          "x": 97.90829475488039,
          "y": 207.26834659898182,
          "reactionIds": [],
          "metaboliteIds": [
            "2076680",
            "2076681",
            "2076669"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076130",
          "biggId": "3HAD140",
          "x": 592.6047793690934,
          "y": 268.6509262183973,
          "reactionIds": [],
          "metaboliteIds": [
            "2077113",
            "2077112",
            "2077108"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076068",
          "biggId": "MCOATA",
          "x": 226.8908064412926,
          "y": 132.8118715669264,
          "reactionIds": [],
          "metaboliteIds": [
            "2076700",
            "2076702",
            "2076701",
            "2076652"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076069",
          "biggId": "3OAS60",
          "x": 226.8908064412926,
          "y": 177.78433380008758,
          "reactionIds": [],
          "metaboliteIds": [
            "2076702",
            "2076709",
            "2076673",
            "2076710",
            "2076706",
            "2076708"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076207",
          "biggId": "3HAD180",
          "x": 777.4538934372822,
          "y": 274.00106873506854,
          "reactionIds": [],
          "metaboliteIds": [
            "2077667",
            "2077675",
            "2077674"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076193",
          "biggId": "AACPS9",
          "x": 281.1016273736088,
          "y": 374.7808191788457,
          "reactionIds": [],
          "metaboliteIds": [
            "2077568",
            "2077569",
            "2077572",
            "2077570",
            "2076912",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076190",
          "biggId": "KAS14",
          "x": 25.23750054685048,
          "y": 95.70597056400437,
          "reactionIds": [],
          "metaboliteIds": [
            "2076695",
            "2076702",
            "2077541",
            "2077547",
            "2077545",
            "2077549"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076191",
          "biggId": "ACOATA",
          "x": 25.8581776196143,
          "y": 41.112885607611936,
          "reactionIds": [],
          "metaboliteIds": [
            "2077553",
            "2077541",
            "2075382",
            "2077554"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076196",
          "biggId": "EAR100y",
          "x": 369.4996274544735,
          "y": 315.28811133449227,
          "reactionIds": [],
          "metaboliteIds": [
            "2077593",
            "2077048",
            "2077594",
            "2077043",
            "2077592"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076197",
          "biggId": "FA100ACPHi",
          "x": 434.084518981728,
          "y": 372.6417617867529,
          "reactionIds": [],
          "metaboliteIds": [
            "2077598",
            "2077048",
            "2077599",
            "2077601",
            "2077587"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076194",
          "biggId": "FA80ACPHi",
          "x": 339.01432271569,
          "y": 368.85798103747453,
          "reactionIds": [],
          "metaboliteIds": [
            "2077577",
            "2077576",
            "2076912",
            "2077578",
            "2077571"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076195",
          "biggId": "AACPS8",
          "x": 382.3068975463908,
          "y": 367.1567902942729,
          "reactionIds": [],
          "metaboliteIds": [
            "2077584",
            "2077586",
            "2077048",
            "2077583",
            "2077587",
            "2077585"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076210",
          "biggId": "AACPS6",
          "x": 777.780646483195,
          "y": 368.1937827982574,
          "reactionIds": [],
          "metaboliteIds": [
            "2077696",
            "2077697",
            "2077679",
            "2077693",
            "2077694",
            "2077695"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076213",
          "biggId": "EAR140y",
          "x": 551.2287233646138,
          "y": 312.8040171263013,
          "reactionIds": [],
          "metaboliteIds": [
            "2077716",
            "2077715",
            "2077717",
            "2077113",
            "2077117"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076199",
          "biggId": "AACPS7",
          "x": 472.779698859533,
          "y": 366.56773258833533,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077613",
            "2077617",
            "2077616",
            "2077614",
            "2077615"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076214",
          "biggId": "EAR120y",
          "x": 455.3841616185396,
          "y": 313.4906382981392,
          "reactionIds": [],
          "metaboliteIds": [
            "2077085",
            "2077723",
            "2077722",
            "2077078",
            "2077724"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076135",
          "biggId": "EAR160x",
          "x": 693.3073914128274,
          "y": 314.03260541305644,
          "reactionIds": [],
          "metaboliteIds": [
            "2077132",
            "2077144",
            "2077146",
            "2077145",
            "2077143"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076202",
          "biggId": "FA140ACPHi",
          "x": 616.3300223154603,
          "y": 369.2312817028737,
          "reactionIds": [],
          "metaboliteIds": [
            "2077639",
            "2077637",
            "2077632",
            "2077117",
            "2077636"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076125",
          "biggId": "3HAD120",
          "x": 498.8086825348457,
          "y": 269.74723305286375,
          "reactionIds": [],
          "metaboliteIds": [
            "2077073",
            "2077078",
            "2077077"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076121",
          "biggId": "EAR100x",
          "x": 406.27954759293357,
          "y": 312.3326212505268,
          "reactionIds": [],
          "metaboliteIds": [
            "2077051",
            "2077048",
            "2077049",
            "2077050",
            "2077043"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076205",
          "biggId": "AACPS3",
          "x": 662.888908038299,
          "y": 368.1633758000077,
          "reactionIds": [],
          "metaboliteIds": [
            "2077660",
            "2077277",
            "2077146",
            "2077662",
            "2077661",
            "2077659"
          ],
          "relatedMetaboliteIds": []
        },
        {
          "id": "2076132",
          "biggId": "3OAR160",
          "x": 693.3073914128274,
          "y": 224.0876809467341,
          "reactionIds": [],
          "metaboliteIds": [
            "2077125",
            "2077092",
            "2077124",
            "2077127",
            "2077126"
          ],
          "relatedMetaboliteIds": []
        }
      ]
    },
    {
      "sedmlUri": [
        "simulation.sedml",
        "reaction_fluxes"
      ],
      "name": "reactionFluxes"
    },
    {
      "name": "metabolitesScaled",
      "source": "metabolites",
      "transform": [
        {
          "type": "formula",
          "expr": "datum.biggId + ': ' + datum.name",
          "as": "idName"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x)",
          "as": "xScaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y)",
          "as": "yScaled"
        },
        {
          "type": "formula",
          "expr": "datum.size * currentZoom",
          "as": "sizeScaled"
        },
        {
          "type": "formula",
          "expr": "metaboliteStrokeWidthData * currentZoom",
          "as": "strokeWidthScaled"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.id == datum.id ? metaboliteFill : (indexof(hover.metaboliteIds, datum.id) >= 0 ? metaboliteFill : (indexof(hover.relatedMetaboliteIds, datum.id) >= 0 ? metaboliteLightFill : hiddenColor))) : metaboliteFill",
          "as": "fill"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.id == datum.id ? metaboliteStroke : (indexof(hover.metaboliteIds, datum.id) >= 0 ? metaboliteStroke : (indexof(hover.relatedMetaboliteIds, datum.id) >= 0 ? metaboliteLightStroke : hiddenColor))) : metaboliteStroke",
          "as": "stroke"
        }
      ]
    },
    {
      "name": "metaboliteLabelsVisibleScaled",
      "source": "metabolites",
      "transform": [
        {
          "type": "filter",
          "expr": "Metabolite_labels"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.labelX)",
          "as": "labelXScaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.labelY)",
          "as": "labelYScaled"
        },
        {
          "type": "formula",
          "expr": "8 * currentZoom",
          "as": "fontSizeScaled"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.id == datum.id ? labelColor : (indexof(hover.metaboliteIds, datum.id) >= 0 ? labelColor : (indexof(hover.relatedMetaboliteIds, datum.id) >= 0 ? labelColor : hiddenColor))) : labelColor",
          "as": "fill"
        }
      ]
    },
    {
      "name": "reactionAbsFluxes",
      "source": "reactionFluxes",
      "transform": [
        {
          "type": "formula",
          "expr": "datum.values[0]",
          "as": "flux"
        },
        {
          "type": "formula",
          "expr": "abs(datum.flux)",
          "as": "absFlux"
        }
      ]
    },
    {
      "name": "reactionSegmentPathsAndFluxesScaled",
      "source": "reactionSegmentCoordinates",
      "transform": [
        {
          "type": "lookup",
          "from": "reactionAbsFluxes",
          "key": "label",
          "fields": [
            "biggId"
          ],
          "values": [
            "flux",
            "absFlux"
          ],
          "as": [
            "flux",
            "absFlux"
          ]
        },
        {
          "type": "formula",
          "expr": "datum.biggId + ': ' + datum.name + ' (' + (datum.flux == 0 ? '0' : format(datum.flux / floor(log(datum.absFlux)/LN10), '.3') + ' x 10^' + toString(floor(log(datum.absFlux)/LN10))) + ')'",
          "as": "idNameFlux"
        },
        {
          "type": "formula",
          "expr": "[datum.id]",
          "as": "reactionIds"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x0)",
          "as": "x0Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y0)",
          "as": "y0Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x1)",
          "as": "x1Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y1)",
          "as": "y1Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x2)",
          "as": "x2Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y2)",
          "as": "y2Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x3)",
          "as": "x3Scaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y3)",
          "as": "y3Scaled"
        },
        {
          "type": "formula",
          "expr": "datum.type === 'line' ? ('M' + toString(datum.x0Scaled) + ',' + toString(datum.y0Scaled) + 'L' + toString(datum.x1Scaled) + ',' + toString(datum.y1Scaled)) : ('M' + toString(datum.x0Scaled) + ',' + toString(datum.y0Scaled) + 'C' + toString(datum.x1Scaled) + ',' + toString(datum.y1Scaled) + ' ' + toString(datum.x2Scaled) + ',' + toString(datum.y2Scaled) + ' ' + toString(datum.x3Scaled) + ',' + toString(datum.y3Scaled))",
          "as": "path"
        },
        {
          "type": "formula",
          "expr": "reactionStrokeWidthData * currentZoom",
          "as": "strokeWidthScaled"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.biggId == datum.biggId || indexof(hover.reactionIds, datum.id) >= 0 ? (datum.absFlux != null ? scale('reactionFluxColorScale', datum.absFlux) : hiddenColor) : hiddenColor) : (datum.absFlux != null ? scale('reactionFluxColorScale', datum.absFlux) : hiddenColor)",
          "as": "stroke"
        }
      ]
    },
    {
      "name": "reactionArrowHeadsAndFluxesScaled",
      "source": "reactionArrowHeadCoordinates",
      "transform": [
        {
          "type": "lookup",
          "from": "reactionAbsFluxes",
          "key": "biggId",
          "fields": [
            "biggId"
          ],
          "values": [
            "flux",
            "absFlux"
          ],
          "as": [
            "flux",
            "absFlux"
          ]
        },
        {
          "type": "formula",
          "expr": "datum.biggId + ': ' + datum.name + ' (' + (datum.flux == 0 ? '0' : format(datum.flux / floor(log(datum.absFlux)/LN10), '.3') + ' x 10^' + toString(floor(log(datum.absFlux)/LN10))) + ')'",
          "as": "idNameFlux"
        },
        {
          "type": "formula",
          "expr": "[datum.id]",
          "as": "reactionIds"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x)",
          "as": "xScaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y)",
          "as": "yScaled"
        },
        {
          "type": "formula",
          "expr": "100 * currentZoom",
          "as": "sizeScaled"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.biggId == datum.biggId || indexof(hover.reactionIds, datum.id) >= 0 ? (((datum.start && datum.flux > 0) || (!datum.start && datum.flux < 0)) ? (datum.absFlux != null ? scale('reactionFluxColorScale', datum.absFlux) : hiddenColor) : reverseArrowHeadFillColor) : hiddenColor) : (((datum.start && datum.flux > 0) || (!datum.start && datum.flux < 0)) ? (datum.absFlux != null ? scale('reactionFluxColorScale', datum.absFlux) : hiddenColor) : reverseArrowHeadFillColor)",
          "as": "fill"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.biggId == datum.biggId || indexof(hover.reactionIds, datum.id) >= 0 ? (((datum.start && datum.flux > 0) || (!datum.start && datum.flux < 0)) ? null : reverseArrowHeadStrokeColor) : reverseArrowHeadStrokeColor) : (((datum.start && datum.flux > 0) || (!datum.start && datum.flux < 0)) ? null : reverseArrowHeadStrokeColor)",
          "as": "stroke"
        },
        {
          "type": "formula",
          "expr": "arrowHeadStrokeWidthData * 4 * currentZoom",
          "as": "strokeWidthScaled"
        }
      ]
    },
    {
      "name": "reactionLabelsVisibleScaled",
      "source": "reactionLabels",
      "transform": [
        {
          "type": "filter",
          "expr": "Reaction_labels"
        },
        {
          "type": "formula",
          "expr": "scale('positionXScale', datum.x)",
          "as": "xScaled"
        },
        {
          "type": "formula",
          "expr": "scale('positionYScale', datum.y)",
          "as": "yScaled"
        },
        {
          "type": "formula",
          "expr": "8 * currentZoom",
          "as": "fontSizeScaled"
        },
        {
          "type": "formula",
          "expr": "hover ? (hover.biggId == datum.biggId || indexof(hover.reactionIds, datum.id) >= 0 ? labelColor : hiddenColor) : labelColor",
          "as": "fill"
        }
      ]
    }
  ],
  "scales": [
    {
      "name": "positionXScale",
      "type": "linear",
      "domain": {
        "signal": "xdom"
      },
      "range": {
        "signal": "xrange"
      },
      "zero": false
    },
    {
      "name": "positionYScale",
      "type": "linear",
      "domain": {
        "signal": "ydom"
      },
      "range": {
        "signal": "yrange"
      },
      "zero": false
    },
    {
      "name": "reactionFluxColorScale",
      "type": "quantize",
      "domain": {
        "data": "reactionAbsFluxes",
        "field": "absFlux"
      },
      "range": {
        "scheme": "viridis",
        "count": 100
      }
    }
  ],
  "marks": [
    {
      "name": "Reactions",
      "type": "path",
      "from": {
        "data": "reactionSegmentPathsAndFluxesScaled"
      },
      "encode": {
        "enter": {
          "tooltip": {
            "field": "idNameFlux"
          }
        },
        "update": {
          "path": {
            "field": "path"
          },
          "stroke": {
            "field": "stroke"
          },
          "strokeWidth": {
            "field": "strokeWidthScaled"
          }
        }
      }
    },
    {
      "name": "ReactionsArrowHeads",
      "type": "symbol",
      "from": {
        "data": "reactionArrowHeadsAndFluxesScaled"
      },
      "encode": {
        "enter": {
          "shape": {
            "value": "triangle"
          },
          "angle": {
            "field": "angle"
          },
          "tooltip": {
            "field": "idNameFlux"
          }
        },
        "update": {
          "x": {
            "field": "xScaled"
          },
          "y": {
            "field": "yScaled"
          },
          "size": {
            "field": "sizeScaled"
          },
          "fill": {
            "field": "fill"
          },
          "stroke": {
            "field": "stroke"
          },
          "strokeWidth": {
            "field": "strokeWidthScaled"
          }
        }
      }
    },
    {
      "name": "Metabolites",
      "type": "symbol",
      "from": {
        "data": "metabolitesScaled"
      },
      "interactive": true,
      "encode": {
        "enter": {
          "shape": {
            "value": "circle"
          },
          "tooltip": {
            "field": "idName"
          }
        },
        "update": {
          "xc": {
            "field": "xScaled"
          },
          "yc": {
            "field": "yScaled"
          },
          "size": {
            "field": "sizeScaled"
          },
          "fill": {
            "field": "fill"
          },
          "stroke": {
            "field": "stroke"
          },
          "strokeWidth": {
            "field": "strokeWidthScaled"
          }
        }
      }
    },
    {
      "name": "Metabolites labels",
      "type": "text",
      "from": {
        "data": "metaboliteLabelsVisibleScaled"
      },
      "encode": {
        "enter": {
          "text": {
            "field": "biggId"
          },
          "align": {
            "value": "left"
          }
        },
        "update": {
          "x": {
            "field": "labelXScaled"
          },
          "y": {
            "field": "labelYScaled"
          },
          "fontSize": {
            "field": "fontSizeScaled"
          },
          "fill": {
            "field": "fill"
          }
        }
      }
    },
    {
      "name": "Reaction labels",
      "type": "text",
      "from": {
        "data": "reactionLabelsVisibleScaled"
      },
      "encode": {
        "enter": {
          "text": {
            "field": "biggId"
          },
          "align": {
            "value": "left"
          }
        },
        "update": {
          "x": {
            "field": "xScaled"
          },
          "y": {
            "field": "yScaled"
          },
          "fontSize": {
            "field": "fontSizeScaled"
          },
          "fill": {
            "field": "fill"
          }
        }
      }
    }
  ],
  "legends": [
    {
      "fill": "reactionFluxColorScale",
      "type": "gradient",
      "title": "Fluxes",
      "titleFontSize": 10,
      "titlePadding": 2,
      "titleAlign": "left",
      "orient": "top-right",
      "direction": "vertical"
    }
  ]
}