excessDeaths = (await FileAttachment("excess-deaths-cumulative-economist-single-entity.csv").csv()).map(d => ({name: d.Entity, code: d.Code, numericCode: isoCodeTranslationMap.get(d.Code, 0), day: d.Day, excessDeathsCentral: Number.parseFloat(d.cumulative_estimated_daily_excess_deaths), confirmedDeaths: Number.parseInt(d["Total confirmed deaths due to COVID-19"]), excessDeathsUpper: Number.parseFloat(d.cumulative_estimated_daily_excess_deaths_ci_95_top), excessDeathsLower: Number.parseFloat(d.cumulative_estimated_daily_excess_deaths_ci_95_bot) }))