```json
{
  "sym_variables": [
    ("x0", "steaks"),
    ("x1", "bowls of pasta"),
    ("x2", "hot dogs"),
    ("x3", "cheeseburgers")
  ],
  "objective_function": "1*x0 + 3*x1 + 5*x2 + 3*x3",
  "constraints": [
    "4*x1 + 15*x2 >= 97",
    "1*x0 + 4*x1 >= 93",
    "1*x0 + 4*x1 + 4*x3 >= 112",
    "1*x0 + 15*x2 + 4*x3 >= 112",
    "4*x1 + 15*x2 + 4*x3 >= 112",
    "1*x0 + 4*x1 + 15*x2 >= 112",
    "1*x0 + 4*x1 + 4*x3 >= 136",
    "1*x0 + 15*x2 + 4*x3 >= 136",
    "4*x1 + 15*x2 + 4*x3 >= 136",
    "1*x0 + 4*x1 + 15*x2 >= 136",
    "1*x0 + 4*x1 + 4*x3 >= 127",
    "1*x0 + 15*x2 + 4*x3 >= 127",
    "4*x1 + 15*x2 + 4*x3 >= 127",
    "1*x0 + 4*x1 + 15*x2 >= 127",
    "1*x0 + 4*x1 + 4*x3 >= 135",
    "1*x0 + 15*x2 + 4*x3 >= 135",
    "4*x1 + 15*x2 + 4*x3 >= 135",
    "1*x0 + 4*x1 + 15*x2 >= 135",
    "1*x0 + 4*x1 + 15*x2 + 4*x3 >= 135",
    "18*x1 + 34*x2 >= 112",
    "3*x0 + 34*x2 >= 107",
    "3*x0 + 18*x1 >= 75",
    "3*x0 + 18*x1 + 22*x3 >= 103",
    "3*x0 + 18*x1 + 34*x2 >= 103",
    "3*x0 + 34*x2 + 22*x3 >= 103",
    "3*x0 + 18*x1 + 22*x3 >= 113",
    "3*x0 + 18*x1 + 34*x2 >= 113",
    "3*x0 + 34*x2 + 22*x3 >= 113",
    "3*x0 + 18*x1 + 22*x3 >= 90",
    "3*x0 + 18*x1 + 34*x2 >= 90",
    "3*x0 + 34*x2 + 22*x3 >= 90",
    "3*x0 + 18*x1 + 34*x2 + 22*x3 >= 90",
    "-8*x0 + 1*x3 >= 0",
    "-8*x2 + 5*x3 >= 0",
    "4*x1 + 15*x2 <= 510",
    "1*x0 + 4*x1 <= 369",
    "34*x2 + 22*x3 <= 249",
    "3*x0 + 34*x2 <= 417",
    "18*x1 + 22*x3 <= 323",
    "1*x0 + 4*x1 + 15*x2 + 4*x3 <= 567",  // Added total tastiness constraint
    "3*x0 + 18*x1 + 34*x2 + 22*x3 <= 560" // Added total cost constraint
  ]
}
```

```python
import gurobipy as gp

# Create a new model
m = gp.Model("food_optimization")

# Create variables
steaks = m.addVar(lb=0, vtype=gp.GRB.CONTINUOUS, name="steaks")
pasta = m.addVar(lb=0, vtype=gp.GRB.CONTINUOUS, name="pasta")
hot_dogs = m.addVar(lb=0, vtype=gp.GRB.CONTINUOUS, name="hot_dogs")
cheeseburgers = m.addVar(lb=0, vtype=gp.GRB.CONTINUOUS, name="cheeseburgers")


# Set objective function
m.setObjective(1*steaks + 3*pasta + 5*hot_dogs + 3*cheeseburgers, gp.GRB.MINIMIZE)

# Add constraints
m.addConstr(4*pasta + 15*hot_dogs >= 97)
m.addConstr(1*steaks + 4*pasta >= 93)
m.addConstr(1*steaks + 4*pasta + 4*cheeseburgers >= 112)
m.addConstr(1*steaks + 15*hot_dogs + 4*cheeseburgers >= 112)
m.addConstr(4*pasta + 15*hot_dogs + 4*cheeseburgers >= 112)
m.addConstr(1*steaks + 4*pasta + 15*hot_dogs >= 112)
m.addConstr(1*steaks + 4*pasta + 4*cheeseburgers >= 136)
m.addConstr(1*steaks + 15*hot_dogs + 4*cheeseburgers >= 136)
m.addConstr(4*pasta + 15*hot_dogs + 4*cheeseburgers >= 136)
m.addConstr(1*steaks + 4*pasta + 15*hot_dogs >= 136)
m.addConstr(1*steaks + 4*pasta + 4*cheeseburgers >= 127)
m.addConstr(1*steaks + 15*hot_dogs + 4*cheeseburgers >= 127)
m.addConstr(4*pasta + 15*hot_dogs + 4*cheeseburgers >= 127)
m.addConstr(1*steaks + 4*pasta + 15*hot_dogs >= 127)
m.addConstr(1*steaks + 4*pasta + 4*cheeseburgers >= 135)
m.addConstr(1*steaks + 15*hot_dogs + 4*cheeseburgers >= 135)
m.addConstr(4*pasta + 15*hot_dogs + 4*cheeseburgers >= 135)
m.addConstr(1*steaks + 4*pasta + 15*hot_dogs >= 135)
m.addConstr(1*steaks + 4*pasta + 15*hot_dogs + 4*cheeseburgers >= 135)
m.addConstr(18*pasta + 34*hot_dogs >= 112)
m.addConstr(3*steaks + 34*hot_dogs >= 107)
m.addConstr(3*steaks + 18*pasta >= 75)
m.addConstr(3*steaks + 18*pasta + 22*cheeseburgers >= 103)
m.addConstr(3*steaks + 18*pasta + 34*hot_dogs >= 103)
m.addConstr(3*steaks + 34*hot_dogs + 22*cheeseburgers >= 103)
m.addConstr(3*steaks + 18*pasta + 22*cheeseburgers >= 113)
m.addConstr(3*steaks + 18*pasta + 34*hot_dogs >= 113)
m.addConstr(3*steaks + 34*hot_dogs + 22*cheeseburgers >= 113)
m.addConstr(3*steaks + 18*pasta + 22*cheeseburgers >= 90)
m.addConstr(3*steaks + 18*pasta + 34*hot_dogs >= 90)
m.addConstr(3*steaks + 34*hot_dogs + 22*cheeseburgers >= 90)
m.addConstr(3*steaks + 18*pasta + 34*hot_dogs + 22*cheeseburgers >= 90)
m.addConstr(-8*steaks + 1*cheeseburgers >= 0)
m.addConstr(-8*hot_dogs + 5*cheeseburgers >= 0)
m.addConstr(4*pasta + 15*hot_dogs <= 510)
m.addConstr(1*steaks + 4*pasta <= 369)
m.addConstr(34*hot_dogs + 22*cheeseburgers <= 249)
m.addConstr(3*steaks + 34*hot_dogs <= 417)
m.addConstr(18*pasta + 22*cheeseburgers <= 323)

# Add total tastiness and cost constraints from the resource dictionary
m.addConstr(1*steaks + 4*pasta + 15*hot_dogs + 4*cheeseburgers <= 567)
m.addConstr(3*steaks + 18*pasta + 34*hot_dogs + 22*cheeseburgers <= 560)


# Optimize model
m.optimize()

# Print results
if m.status == gp.GRB.OPTIMAL:
    print('Obj: %g' % m.objVal)
    print('steaks:', steaks.x)
    print('pasta:', pasta.x)
    print('hot_dogs:', hot_dogs.x)
    print('cheeseburgers:', cheeseburgers.x)
elif m.status == gp.GRB.INFEASIBLE:
    print('Model is infeasible')
else:
    print('Optimization ended with status %d' % m.status)

```
