events = ({
[7 * 365]: {
labels: { quantity: "7 year contract", joe: "3 bottles ea." },
diff: { spencer: 3 * 750, joe: 3 * 750, chris: 3 * 750 }
},
[12 * 365]: {
labels: { quantity: "Chris grabs 6 bottles" },
diff: { chris: 6 * 750 }
},
[15 * 365]: {
labels: { quantity: "Spencer takes all of his (Chris takes ¼)" },
diff: { spencer: (all) => all, chris: (all) => all * 0.25 }
},
[20 * 365]: {
labels: { quantity: `Joe's done` },
diff: { joe: (all) => all }
},
[30 * 365]: {
labels: { quantity: "Chris takes the rest of his (All gone 😢)" },
diff: { chris: (all) => all }
},
[Math.round(halfLife * 365)]: {
labels: { angelsOnly: "angels' half-life" }
}
})