{
  "kind": "systems-doc",
  "version": 2,
  "name": "HELLO WORLD",
  "tickLabel": "TICK",
  "seed": null,
  "settings": {
    "secondsPerTick": 0.5,
    "snapToGrid": false,
    "gridSize": 40,
    "gravity": true
  },
  "entities": [
    {
      "id": "in",
      "name": "INPUT",
      "shape": "circle",
      "color": "#5CC489",
      "x": 240,
      "y": 400,
      "start": 100,
      "capacity": null,
      "production": {
        "min": 4,
        "max": 6,
        "curve": "uniform",
        "timing": {
          "every": 1,
          "offset": 0
        }
      },
      "loss": {
        "min": 0,
        "max": 0,
        "curve": "constant",
        "timing": {
          "every": 1,
          "offset": 0
        }
      }
    },
    {
      "id": "mid",
      "name": "PROCESS",
      "shape": "square",
      "color": "#E0B45C",
      "x": 600,
      "y": 400,
      "start": 0,
      "capacity": 40,
      "production": {
        "min": 0,
        "max": 0,
        "curve": "constant",
        "timing": {
          "every": 1,
          "offset": 0
        }
      },
      "loss": {
        "min": 0,
        "max": 0,
        "curve": "constant",
        "timing": {
          "every": 1,
          "offset": 0
        }
      }
    },
    {
      "id": "out",
      "name": "OUTPUT",
      "shape": "diamond",
      "color": "#D96B6B",
      "x": 960,
      "y": 400,
      "start": 0,
      "capacity": null,
      "production": {
        "min": 0,
        "max": 0,
        "curve": "constant",
        "timing": {
          "every": 1,
          "offset": 0
        }
      },
      "loss": {
        "min": 0,
        "max": 0,
        "curve": "constant",
        "timing": {
          "every": 1,
          "offset": 0
        }
      }
    }
  ],
  "arrows": [
    {
      "id": "l1",
      "from": "in",
      "to": "mid",
      "input": {
        "min": 3,
        "max": 6,
        "curve": "uniform"
      },
      "whenShort": "take-remaining",
      "convert": "input",
      "timing": {
        "every": 1,
        "offset": 0
      },
      "chance": 1,
      "label": "",
      "color": null
    },
    {
      "id": "l2",
      "from": "mid",
      "to": "out",
      "input": {
        "min": 2,
        "max": 4,
        "curve": "normal"
      },
      "whenShort": "take-remaining",
      "convert": "input * 2",
      "timing": {
        "every": 1,
        "offset": 0
      },
      "chance": 1,
      "label": "DOUBLES",
      "color": null
    }
  ]
}
